import * as React from 'react';
import { AdaptablePredicate, AdaptablePredicateDef } from '../../../types';
export interface PredicateEditorProps {
    columnId?: string;
    predicateDefs: AdaptablePredicateDef[];
    predicate?: AdaptablePredicate;
    onChange: (predicate: AdaptablePredicate) => void;
    onClear?: () => void;
    placeholder?: string;
}
export declare const PredicateEditor: React.FunctionComponent<PredicateEditorProps>;
