import Handsontable from 'handsontable';
import { CSSProperties } from 'react';
export interface IHandsonTable extends Handsontable.GridSettings {
    className?: string;
    style?: CSSProperties;
}
export declare type IHandsonTableProps = IHandsonTable;
export declare function HandsonTable(props: IHandsonTableProps): JSX.Element;
