import { FontWeightProperty } from 'csstype'; import { Theme } from '../../../styles'; import { PivotTableCellProps } from './PivotTableCell'; export declare const pivotTableCellCreateStyles: (theme: Theme, key: string, maxValue: number, { types, children }: PivotTableCellProps) => { root: { gridArea: string; backgroundColor: string; color: string; borderTop: string; borderLeft: string; display: string; justifyContent: string; fontWeight: FontWeightProperty; alignItems: string; width: string; height: string; padding: string; }; endRowBorder: { borderBottom: string; }; endColumnBorder: { borderRight: string; }; };