/** * Picks the given fields from the provided object. * * @param object - The object to pick fields from * @param keys - The array of field names to pick * @returns An object with the given fields picked * * @category Object * @public */ export default function pick>(object: ObjectType, keys: Key | [Key, ...Key[]]): ReturnType;