/** * Pick a set of properties from an object onto a new object * Undefined properties are not copied */ export declare function pickProps(obj: any, props: string[]): any;