/** * 从对象中选取指定属性 * @param obj 原对象 * @param keys 要选取的键数组 */ export declare const pick: , K extends keyof T>(obj: T, keys: K[]) => Pick;