import { ReactElement } from 'react';
import { TableInstance } from 'react-table';
declare type FilterPageCustomProps<T extends Record<string, unknown>> = {
    instance: TableInstance<T>;
    anchorEl?: Element;
    onClose?: () => void;
    show?: boolean;
    setLocalFilterActive: any;
    filterActive?: boolean;
};
export declare function FilterPageCustom<T extends Record<string, unknown>>({ instance, onClose, filterActive, setLocalFilterActive, }: FilterPageCustomProps<T>): ReactElement;
export {};
