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