import type { Keys } from "./keys"; /** * Pick keys from an object. This function creates a new object * with the specified keys. The original object is not mutated. * * @param object The original object. * @param keys An array of keys to keep. */ export declare function pick>>(object: Readonly, keys: K): Pick;