/** * Populates an object with properties of another object * @param {Object} source Source object * @param {string[]} properties Properties names to include * @returns object populated with the picked keys */ export declare const pick: >(source: T, keys?: (keyof T)[]) => Partial; export declare const pickBy: >(source: T, predicate: (value: T[K], key: K, collection: T) => boolean) => Partial; //# sourceMappingURL=pick.d.ts.map