import { ElTooltipProps } from "../../tooltip/src/tooltip.js"; import "../../tooltip/index.js"; import { TableColumnCtx } from "./table-column/defaults.js"; import { DefaultRow } from "./table/defaults.js"; import { CSSProperties, VNode } from "vue"; //#region ../../packages/components/table/src/util.d.ts type TableOverflowTooltipOptions = Partial>; type TableOverflowTooltipFormatter = (data: { row: T; column: TableColumnCtx; cellValue: any; }) => VNode | string; //#endregion export { TableOverflowTooltipFormatter, TableOverflowTooltipOptions };