import type { RecordTypeSchema } from "../data-types/type-types";
import { RecordType } from "../data-types/types/record";
import type { PickRecord } from "./types";
/**
 * Removes the not specified entries from the RecordOf Data Type.
 * Similar to the Typescript's `Pick<>` utility type.
 */
export declare const Pick: <R extends RecordTypeSchema, K extends keyof R>(recordDataType: RecordType<R>, ...pickKeys: ReadonlyArray<K>) => PickRecord<R, K>;
