import * as React from 'react'; export interface CellItemProps { prefixCls?: string; className?: string; style?: React.CSSProperties; onClick?: () => void; align?: 'top' | 'middle'; disabled?: boolean; label: React.ReactNode | string; icon?: boolean; wrap?: boolean; activeStyle?: React.CSSProperties; children?: React.ReactNode; } declare function CellItem(props: CellItemProps): JSX.Element; declare namespace CellItem { var defaultProps: Partial; } export declare const Brief: React.FunctionComponent; export interface BriefProps { prefixCls?: string; style?: React.CSSProperties; } export default CellItem;