import { PlainObject } from "../models.mjs"; //#region src/value/pick.d.ts /** * Create a new object with only the specified keys * * @param value Original object * @param keys Keys to use * @returns Partial object with only the specified keys */ declare function pick(value: Value, keys: ValueKey[]): Pick; //#endregion export { pick };