import { default as React } from 'react'; import { SortColumnProps } from '../../SortColumn/SortColumnProps'; import { default as StandardTable } from '../StandardTable'; type StandardTableProps = React.ComponentProps; type MobileColumnOptionsProps = { config: StandardTableProps['config']; localStorageName: string; sort: SortColumnProps['sorter']; sortBy: SortColumnProps['active']; setActiveColumn: (header: SortColumnProps['label']) => void; activeSecondaryColumn: SortColumnProps['label']; drawerCloseCallout?: (arg: boolean) => void; }; declare const MobileColumnOptions: ({ config, localStorageName, sort, setActiveColumn, sortBy, activeSecondaryColumn, drawerCloseCallout, }: MobileColumnOptionsProps) => React.JSX.Element; export default MobileColumnOptions;