import type { AnyObject } from '../_util/type'; import type { ColumnTitle, ColumnTitleProps, ColumnType } from './interface'; export declare const getColumnKey: (column: ColumnType, defaultKey: string) => string | number | bigint; export declare function getColumnPos(index: number, pos?: string): string; export declare const renderColumnTitle: (title: ColumnTitle, props: ColumnTitleProps) => import("react").ReactNode; /** * Safe get column title * * Should filter [object Object] * * @param title */ export declare const safeColumnTitle: (title: ColumnTitle, props: ColumnTitleProps) => import("react").ReactNode;