/** * @param object the object to pick properties from * @param keys the array of property names to pick * @returns the object with only the picked properties */ export declare function pick< T extends Record, K extends keyof T >( object: T, keys: K[] ): { [P in K]: T[P]; }; export default pick;