import * as React from 'react';
/**
 * The props of the GridColumnMenuItem component.
 */
export interface GridColumnMenuItemProps {
    /**
     * Triggered on each click on the title.
     */
    onClick: Function;
    /**
     * The title of the GridColumnMenuItem component.
     */
    title: string;
    /**
     * The class of the icon rendered next to the title.
     */
    iconClass: string;
    /**
     * The selected state of the component.
     */
    selected?: boolean;
}
/**
 * The GridColumnMenuItem to be used inside the Grid ColumnMenu.
 */
export declare class GridColumnMenuItem extends React.Component<GridColumnMenuItemProps, {}> {
    onClick: (e: any) => void;
    /**
     * @hidden
     */
    render(): JSX.Element;
}
