import React from 'react';
export declare const SPREADSHEETVIEW_CLASSNAME = "k-spreadsheet-view";
export type KendoSpreadsheetViewProps = {
    rowHeaderSelection?: {
        [key: string]: "partial" | "full" | null;
    };
    columnHeaderSelection?: {
        [key: string]: "partial" | "full" | null;
    };
    filter?: React.JSX.Element;
    selection?: React.JSX.Element;
    selectionHighlight?: React.JSX.Element;
    cellEditor?: React.JSX.Element;
    activeCellIndex?: number;
};
export declare const SpreadsheetView: {
    (props: KendoSpreadsheetViewProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
    states: any[];
    options: {};
    className: string;
    defaultOptions: {};
};
export default SpreadsheetView;
