import type { IPopperOptions } from 'element-plus/es/components/popper'; import type { Nullable } from 'element-plus/es/utils'; import type { TableColumnCtx } from './table-column/defaults'; 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[] | undefined) => number))[]) => T[]; export declare const getColumnById: (table: { columns: TableColumnCtx[]; }, columnId: string) => TableColumnCtx | null; export declare const getColumnByKey: (table: { columns: TableColumnCtx[]; }, columnKey: string) => TableColumnCtx; export declare const getColumnByCell: (table: { columns: TableColumnCtx[]; }, cell: HTMLElement, namespace: string) => TableColumnCtx | null; export declare const getRowIdentity: (row: T, rowKey: string | ((row: T) => any)) => string; export declare const getKeysMap: (array: T[], rowKey: 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): boolean; export declare function walkTreeNode(root: any, cb: any, childrenKey?: string, lazyKey?: string): void; export declare let removePopper: any; export declare function createTablePopper(parentNode: HTMLElement | undefined, trigger: HTMLElement, popperContent: string, popperOptions: Partial, tooltipEffect: string): Nullable<{ $: import("vue").ComponentInternalInstance; $data: {}; $props: Partial<{ readonly role: import("element-plus/es/utils").EpPropMergeType; }> & Omit; }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "role">; $attrs: { [x: string]: unknown; }; $refs: { [x: string]: unknown; }; $slots: Readonly<{ [name: string]: import("vue").Slot | undefined; }>; $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase> | null; $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase> | null; $emit: (event: string, ...args: any[]) => void; $el: any; $options: import("vue").ComponentOptionsBase; }>>, { props: Readonly; }>> & { [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined; }>>; triggerRef: import("vue").Ref; popperInstanceRef: import("vue").Ref; contentRef: import("vue").Ref; referenceRef: import("vue").Ref; role: import("vue").ComputedRef>; popperProvides: import("../../..").ElPopperInjectionContext; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record, string, { readonly role: import("element-plus/es/utils").EpPropMergeType; }> & { beforeCreate?: ((() => void) | (() => void)[]) | undefined; created?: ((() => void) | (() => void)[]) | undefined; beforeMount?: ((() => void) | (() => void)[]) | undefined; mounted?: ((() => void) | (() => void)[]) | undefined; beforeUpdate?: ((() => void) | (() => void)[]) | undefined; updated?: ((() => void) | (() => void)[]) | undefined; activated?: ((() => void) | (() => void)[]) | undefined; deactivated?: ((() => void) | (() => void)[]) | undefined; beforeDestroy?: ((() => void) | (() => void)[]) | undefined; beforeUnmount?: ((() => void) | (() => void)[]) | undefined; destroyed?: ((() => void) | (() => void)[]) | undefined; unmounted?: ((() => void) | (() => void)[]) | undefined; renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined; renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined; errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase> | null, info: string) => boolean | void)[]) | undefined; }; $forceUpdate: () => void; $nextTick: typeof import("vue").nextTick; $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions | undefined): import("vue").WatchStopHandle; } & Readonly; }>> & import("vue").ShallowUnwrapRef<{ props: Readonly; }>> & { [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined; }>>; triggerRef: import("vue").Ref; popperInstanceRef: import("vue").Ref; contentRef: import("vue").Ref; referenceRef: import("vue").Ref; role: import("vue").ComputedRef>; popperProvides: import("../../..").ElPopperInjectionContext; }> & {} & import("vue").ComponentCustomProperties>; export declare const isFixedColumn: (index: number, fixed: string | boolean, store: any, realColumns?: TableColumnCtx[] | undefined) => { direction: any; 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[] | undefined, offset?: number) => string[]; export declare const getFixedColumnOffset: (index: number, fixed: string | boolean, store: any, realColumns?: TableColumnCtx[] | undefined) => any; export declare const ensurePosition: (style: any, key: string) => void;