import { AnyObject } from "../_util/type.js"; import { ColumnTitle, ColumnTitleProps, ColumnType, Key } from "./interface.js"; //#region src/table/util.d.ts declare function getColumnKey(column: ColumnType, defaultKey: string): Key; declare function getColumnPos(index: number, pos?: string): string; declare function renderColumnTitle(title: ColumnTitle, props: ColumnTitleProps): any; /** * Safe get column title * * Should filter [object Object] */ declare function safeColumnTitle(title: ColumnTitle, props: ColumnTitleProps): any; //#endregion export { getColumnKey, getColumnPos, renderColumnTitle, safeColumnTitle };