/** * React Component for configuring the way installed augmentations and * Source-Files are displayed in the Augmentations UI */ import * as React from "react"; import { StdButton } from "../../ui/React/StdButton"; type IProps = { collapseAllButtonsFn: () => void; expandAllButtonsFn: () => void; sortByAcquirementTimeFn: () => void; sortInOrderFn: () => void; }; export function ListConfiguration(props: IProps): React.ReactElement { return ( <> ); }