/** * Interface for the return type of the extractKeysAndValuesFromRecord function. * * @template K - Type of the keys in the record. * @template V - Type of the values in the record. */ export interface ReturnTypeForValuesFromRecord { keys: K[]; values: V[]; } /** * Extracts the keys and values from a record and returns them as arrays. * * @template T - Type of the record being passed in. * * @param {T} record - The record from which to extract keys and values. * @returns {ReturnTypeForValuesFromRecord} An object containing the keys and values arrays. */ export declare function extractKeysAndValues>(record: T): ReturnTypeForValuesFromRecord;