///
import { ICommonFilterTypeProps, ICustomFilterProps, TFilterProps } from "./types";
type TDestructuredFilterKeys = keyof ICommonFilterTypeProps<"filter"> | Extract, "name">;
export declare const isCustomFilter: (props: Omit, TDestructuredFilterKeys>) => props is Omit, TDestructuredFilterKeys>;
declare const Filter: ({ title, name, ...props }: TFilterProps) => JSX.Element;
export default Filter;