/** * a companion to the `Pick` type, returns a new object with only the picked attributes */ export declare const pick: , K extends readonly (keyof T)[]>(obj: T, keys: K) => Pick;