import { TableOverflowTooltipOptions } from "../util.js"; import { Store } from "../store/index.js"; import { ColumnCls, ColumnStyle, DefaultRow, Table } from "../table/defaults.js"; import { PropType } from "vue"; //#region ../../packages/components/table/src/table-body/defaults.d.ts interface TableBodyProps { store: Store; stripe?: boolean; context: Table; rowClassName: ColumnCls; rowStyle: ColumnStyle; fixed: string; highlight: boolean; tooltipEffect?: string; tooltipOptions?: TableOverflowTooltipOptions; } declare const defaultProps: { store: { required: boolean; type: PropType["store"]>; }; stripe: BooleanConstructor; tooltipEffect: StringConstructor; tooltipOptions: { type: PropType["tooltipOptions"]>; }; context: { default: () => {}; type: PropType["context"]>; }; rowClassName: PropType["rowClassName"]>; rowStyle: PropType["rowStyle"]>; fixed: { type: StringConstructor; default: string; }; highlight: BooleanConstructor; }; //#endregion export { TableBodyProps, defaultProps as default };