/// <reference types="react" />
import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
import { GridColumnMenuColumnProps } from './GridColumnMenuColumnProps';
/**
 * The props passed to the ColumnMenu filter component.
 */
export interface GridColumnMenuFilterBaseProps {
    /**
     * The current column options.
     */
    column: GridColumnMenuColumnProps;
    /**
     * The method that will be called to close the column menu.
     */
    onCloseMenu?: Function;
    /**
     * The current filter state of the Grid.
     */
    filter?: CompositeFilterDescriptor;
    /**
     * The filterable option of the column.
     */
    filterable?: boolean | undefined;
    /**
     * The method that will be called to notify the parent Grid about a filter change.
     */
    onFilterChange?: (filter: CompositeFilterDescriptor | null, syntheticEvent: React.SyntheticEvent<any>) => any;
}
