import Handsontable from 'handsontable/base';
export interface HotTableProps extends Handsontable.GridSettings {
    id?: string;
    settings?: Handsontable.GridSettings;
    [additional: string]: any;
}
export declare type VueProps<T> = {
    [P in keyof T]: any;
};
