/**
 * Pick keys from an object
 */
export declare function pick(obj: Record<string, any>, keys: string[]): Record<string, any>;
