/** * 获取数据项的唯一标识 * @param record - 数据项 * @param index - 索引 * @param rowKey - key 字段配置 * @returns 唯一标识字符串 */ export declare const getRowKey: (record: T, index: number, rowKey?: string | ((record: T, index: number) => string) | undefined) => string;