import type { SelectInsumosPageProps } from "./SelectInsumosPage.types"; declare const useSelectInsumosPage: (props: SelectInsumosPageProps) => { data: { insumos: { isSelected: boolean; id: string; name: string; unit: string; quantity: number; status?: "unavailable" | "available" | undefined; description?: string | undefined; category?: string | undefined; imageUrl?: string | undefined; }[]; searchTerm: string; selectedCount: number; totalCount: number; selectAll: boolean; hasSelection: boolean; title: string; searchPlaceholder: string; showSelectAll: boolean; }; fns: { handleSearchChange: (value: string) => void; handleInsumoToggle: (insumoId: string) => void; handleSelectAllToggle: () => void; handleClose: () => void; handleSave: () => void; }; }; export default useSelectInsumosPage;