import { TFlatListItem, TSelectedItem } from '../types/index.types'; interface UseCheckSelectAllProps { options: TFlatListItem[]; selectedItems: TSelectedItem[]; isMultiple: boolean; onValueChange: (selectedValues: TSelectedItem[]) => void; listControls?: { selectAllCallback?: () => void; unselectAllCallback?: () => void; }; optionValue: string; } export declare const useSelectAll: ({ options, selectedItems, isMultiple, onValueChange, listControls, optionValue, }: UseCheckSelectAllProps) => { selectAll: boolean; handleSelectAll: () => void; }; export {}; //# sourceMappingURL=use-select-all.d.ts.map