import type { FC } from 'react'; import type { FilterControlProps } from '../FilterControl'; import type { GroupControlProps } from '../GroupControl'; import type { SortControlProps } from '../SortControl'; import './MobileCollectionControls.css'; export type MobileCollectionControlsProps = Omit & Omit & Omit & { showGroupControl: boolean; showFilterControl: boolean; showSortControl: boolean; }; declare const MobileCollectionControls: FC; export default MobileCollectionControls;