import type { FC } from 'react'; import type { FilterControlProps } from '../FilterControl'; import type { GroupControlProps } from '../GroupControl'; import type { SortControlProps } from '../SortControl'; export type MobileCollectionControlsDrawerProps = Omit & Omit & Omit & { mobileOpen: boolean; onMobileOpenToggle: () => void; } & { showGroupControl: boolean; showFilterControl: boolean; showSortControl: boolean; }; declare const MobileCollectionControlsDrawer: FC; export default MobileCollectionControlsDrawer;