import type { RefObject } from "react"; import { type FilterPickerOption } from "../FilterPicker.types"; interface useFilterPickerContent { optionsListRef: RefObject; onClear?: () => void; onSelectAll?: (selection: FilterPickerOption[]) => void; } export declare function useFilterPickerContent(open: boolean, selected: FilterPickerOption[]): useFilterPickerContent; export {};