import { type ElTooltipProps } from 'element-plus/es/components/tooltip'; import type { Table, TreeProps } from './table/defaults'; import type { TableColumnCtx } from './table-column/defaults'; import type { VNode } from 'vue'; export type TableOverflowTooltipOptions = Partial>; export type TableOverflowTooltipFormatter = (data: { row: T; column: TableColumnCtx; cellValue: any; }) => VNode | string; type RemovePopperFn = (() => void) & { trigger?: HTMLElement; vm?: VNode; }; export declare const getCell: (event: Event) => HTMLTableCellElement | null; export declare const orderBy: (array: T[], sortKey: string, reverse: string | number, sortMethod: any, sortBy: string | (string | ((a: T, b: T, array?: T[]) => number))[]) => T[]; export declare const getColumnById: (table: { columns: TableColumnCtx[]; }, columnId: string) => null | TableColumnCtx; export declare const getColumnByKey: (table: { columns: TableColumnCtx[]; }, columnKey: string) => TableColumnCtx; export declare const getColumnByCell: (table: { columns: TableColumnCtx[]; }, cell: HTMLElement, namespace: string) => null | TableColumnCtx; export declare const getRowIdentity: (row: T, rowKey: string | ((row: T) => any)) => string; export declare const getKeysMap: (array: T[], rowKey: string, flatten?: boolean, childrenKey?: string) => Record; export declare function mergeOptions(defaults: T, config: K): T & K; export declare function parseWidth(width: number | string): number | string; export declare function parseMinWidth(minWidth: number | string): number | string; export declare function parseHeight(height: number | string): string | number | null; export declare function compose(...funcs: any[]): any; export declare function toggleRowStatus(statusArr: T[], row: T, newVal?: boolean, tableTreeProps?: TreeProps, selectable?: (row: T, index?: number) => boolean, rowIndex?: number): boolean; export declare function walkTreeNode(root: any, cb: any, childrenKey?: string, lazyKey?: string): void; export declare let removePopper: RemovePopperFn | null; export declare function createTablePopper(props: TableOverflowTooltipOptions, popperContent: string, row: T, column: TableColumnCtx, trigger: HTMLElement, table: Table<[]>): void; export declare const isFixedColumn: (index: number, fixed: string | boolean, store: any, realColumns?: TableColumnCtx[]) => { direction: string; start: number; after: number; } | { direction?: undefined; start?: undefined; after?: undefined; }; export declare const getFixedColumnsClass: (namespace: string, index: number, fixed: string | boolean, store: any, realColumns?: TableColumnCtx[], offset?: number) => string[]; export declare const getFixedColumnOffset: (index: number, fixed: string | boolean, store: any, realColumns?: TableColumnCtx[]) => any; export declare const ensurePosition: (style: any, key: string) => void; export {};