import type { Table, Column } from "@tanstack/react-table";
export interface FilterEditorProps {
    column: Column<any, unknown>;
    table: Table<any>;
    debouncedWait: number;
}
export declare function FilterEditor(props: FilterEditorProps): import("react/jsx-runtime").JSX.Element;
