import { default as React } from 'react';
import { TreeProps } from 'antd';
import { Filter } from 'geostyler-style';
export interface FilterTreeProps {
    /** The filter to edit */
    filter?: Filter;
    /** Callback function for onFilterChange */
    onFilterChange?: ((compFilter: Filter) => void);
}
/**
 * UI for a ComparisonFilter consisting of
 *
 *   - A combo to select the attribute
 *   - A combo to select the operator
 *   - An input field for the value
 */
export declare const FilterTree: React.FC<FilterTreeProps & Partial<TreeProps>>;
