import * as React from 'react';
/**
 * The props of the GridColumnMenuItemContent component.
 */
export interface GridColumnMenuItemContentProps {
    /**
     * The `show` state of the component. Each change is animated with the Reveal animation.
     */
    show: boolean;
}
/**
 * The GridColumnMenuItemContent that will be used inside the Grid ColumnMenu.
 */
export declare class GridColumnMenuItemContent extends React.Component<GridColumnMenuItemContentProps, {}> {
    /**
     * @hidden
     */
    render(): JSX.Element;
}
