import type { SelectMediumsPageProps } from "./SelectMediumsPage.types"; declare const useSelectMediumsPage: (props: SelectMediumsPageProps) => { data: { searchTerm: string; mediums: { isSelected: boolean; id: string; name: string; email: string; status?: "active" | "inactive" | undefined; phone?: string | undefined; profilePictureUrl?: string | undefined; hierarchy?: string | undefined; }[]; selectedCount: number; totalCount: number; selectAll: boolean; hasSelection: boolean; title: string; searchPlaceholder: string; showSelectAll: boolean; }; fns: { handleSearchChange: (value: string) => void; handleMediumToggle: (mediumId: string) => void; handleSelectAllToggle: () => void; handleClose: () => void; handleSave: () => void; }; }; export default useSelectMediumsPage;