import { PropType } from '@vue/composition-api'; export declare const props: { data: { required: boolean; type: PropType; }; columns: { required: boolean; type: PropType; }; height: { type: (NumberConstructor | StringConstructor)[]; default: string; }; width: { type: (NumberConstructor | StringConstructor)[]; default: string; }; isTree: { type: PropType; default: boolean; }; idKey: { type: PropType; }; childrenKey: { type: PropType; }; expandKey: { type: PropType; }; defaultExpand: { type: PropType; default: boolean; }; rowHeight: { required: boolean; type: PropType; default: number; }; showIndex: { required: boolean; type: BooleanConstructor; default: boolean; }; rowSelection: { required: boolean; type: PropType; }; totalBar: { required: boolean; type: PropType<{ totalCount: boolean | ((count: number) => string); }>; }; defaultColumnConfig: { required: boolean; type: PropType<{ width: number; }>; default: () => { width: number; }; }; };