export declare type KeysObj = { [key in T]: null; }; export declare const unionToArray: (obj: KeysObj) => string[]; export declare const pickKeys: (obj: O, keysObj: KeysObj) => Pick;