import type { TableData, TableColumns, TableAlign } from './src/interface'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import Table from "./src/table"; export declare const VTable: Install, TableData | null>; readonly columns: BasicType, TableColumns[] | null>; readonly align: BasicType, TableAlign | null>; readonly border: BasicType; readonly num: BasicType; readonly zebra: BasicType; readonly zebraColor: BasicType, string | null>; readonly height: BasicType, string | number | null>; readonly bgColor: BasicType, string | null>; readonly headBgColor: BasicType, string | null>; readonly showHead: BasicType; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, TableData | null>; readonly columns: BasicType, TableColumns[] | null>; readonly align: BasicType, TableAlign | null>; readonly border: BasicType; readonly num: BasicType; readonly zebra: BasicType; readonly zebraColor: BasicType, string | null>; readonly height: BasicType, string | number | null>; readonly bgColor: BasicType, string | null>; readonly headBgColor: BasicType, string | null>; readonly showHead: BasicType; }>>, { readonly border: boolean; readonly height: string | number; readonly zebra: boolean; readonly zebraColor: string; readonly data: TableData; readonly columns: TableColumns[]; readonly align: TableAlign; readonly num: boolean; readonly bgColor: string; readonly headBgColor: string; readonly showHead: boolean; }>>; /** table 组件实例类型 */ export type TableInstance = InstanceType; export * from './src/interface'; export default VTable;