import { KendoComponent } from '../_types/component';
export declare const COLUMNMENUEXPANDER_CLASSNAME = "k-expander";
export type KendoColumnMenuExpanderProps = {
    itemText?: string;
    itemStartIcon?: string;
    itemEndIcon?: string;
    itemSortIndex?: number;
    expanderIcon?: string;
    itemContent?: React.JSX.Element;
    expanded?: boolean;
    contentId?: string;
};
export declare const ColumnMenuExpander: KendoComponent<KendoColumnMenuExpanderProps & React.HTMLAttributes<HTMLDivElement>>;
export default ColumnMenuExpander;
