/** * A record where both keys and values are typed strings. * * @template K - The key string type. * @template V - The value string type. */ export type StringRecord = Record; /** * Inverts a string record by swapping each entry's key and value. * * @param record - The record to invert. * @returns A new record with the original values as keys and the original keys as values. */ export declare function invertStringRecord(record: StringRecord): StringRecord;