import type { DataRecord } from '@overture-stack/lectern-dictionary'; /** * Extract from a data record an object with only the unique key field values. * @param record * @param uniqueKeyRule * @returns */ export declare const getUniqueKeyValues: (record: DataRecord, uniqueKeyRule: string[]) => DataRecord;