type ObjectMap = { [key in string]: T; }; export declare const isObject: (value: any) => value is ObjectMap; export declare const copyDeep: (object: Readonly>) => ObjectMap; export declare const mergeDeepLeft: (leftOriginal: Readonly>, right: Readonly>) => ObjectMap; export declare const fromPairs: (pairs: [string, T][]) => ObjectMap; export declare const rejectVoid: (object: ObjectMap) => ObjectMap>; export {};