import * as React from 'react';
import { BoxProps } from 'rebass';
import { QlPredicate, QlPredicateDef } from '../../../parser/src/predicate';
interface ColumnFilterComponentProps {
    columnId: string;
    disabled?: boolean;
    predicate?: QlPredicate;
    predicateDefs: QlPredicateDef[];
    onPredicateChange: (predicate: QlPredicate | null) => void;
    wrapperProps?: BoxProps;
}
export declare const ColumnFilterComponent: React.FunctionComponent<ColumnFilterComponentProps>;
export {};
