export declare const PIVOTGRIDCELL_CLASSNAME = "k-pivotgrid-cell";
declare const states: ("focus" | "selected")[];
export type KendoPivotGridCellProps = {
    as?: "th" | "td";
    colSpan?: number;
    rowSpan?: number;
    toggle?: "up" | "down";
    headerTitle?: string;
    content?: string;
    headerRootCell?: boolean;
    totalCell?: boolean;
    headerTotalCell?: boolean;
    rowTotalCell?: boolean;
};
export type KendoPivotGridCellState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const PivotGridCell: {
    (props: KendoPivotGridCellProps & KendoPivotGridCellState & React.HTMLAttributes<HTMLTableCellElement>): import("react/jsx-runtime").JSX.Element;
    states: ("focus" | "selected")[];
    options: {};
    className: string;
    defaultOptions: {};
};
export default PivotGridCell;
