///
import { SerializedStyles } from '@emotion/serialize';
import { GridArea } from './classes/GridArea';
import { PivotTableCellType } from './model';
export interface PivotTableCellProps {
/**
* Types that cell can assume
*/
types: Set;
/**
* Region of the table the cell refers to
*/
gridArea: GridArea;
/**
* Cell's children
*/
children?: string | number;
/**
* True if the cell if the end of a column
*/
isEndColumn?: boolean;
/**
* True if the cell is the end of a row
*/
isEndRow?: boolean;
/**
* Additional styles
*/
styles?: SerializedStyles;
}
export declare function PivotTableCell(props: PivotTableCellProps): JSX.Element;