/// import { FilterMenuCategory, FilterValue, FilterValueViewModel } from "./types"; import { type Scale } from "../../foundations/foundation-types"; export interface FilterMenuProps { categories: FilterMenuCategory[]; onValueChosen: (value: FilterValueViewModel) => void; chosenValues: FilterValue[]; onApply: () => void; shouldShowSearchBox: boolean; allowMultiSelect: boolean; onClear?: () => void; maxWidth?: number; minWidth?: number; maxHeight?: number; size?: Scale; } export default function FilterMenu(props: FilterMenuProps): JSX.Element;