import type { PropType } from 'vue'; import type { Store } from '../store'; import type { ColumnCls, ColumnStyle, Table } from '../table/defaults'; interface TableBodyProps { store: Store; stripe?: boolean; context: Table; rowClassName: ColumnCls; rowStyle: ColumnStyle; fixed: string; highlight: boolean; tooltipEffect: string; } declare const defaultProps: { store: { required: boolean; type: PropType; }; stripe: BooleanConstructor; tooltipEffect: StringConstructor; context: { default: () => {}; type: PropType>; }; rowClassName: PropType>; rowStyle: PropType>; fixed: { type: StringConstructor; default: string; }; highlight: BooleanConstructor; }; export { TableBodyProps }; export default defaultProps;