declare function pick, K extends keyof T>(object: T, keysToPick: K[]): { [P in K]: T[P]; }; export { pick };