/// <reference types="react" />
declare type FilterModalMobileProps = {
    instance: any;
    onClose?: () => void;
    setLocalFilterActive: any;
    filterActive?: boolean;
    tableName: string;
};
export default function FilterModalMobile({ instance, filterActive, setLocalFilterActive, tableName, }: FilterModalMobileProps): JSX.Element;
export {};
