type ObjectLike = Record; /** * Creates an object with hidden, enumerable, and optional property sets. This function * ensures types are instantiated according to configuration rules for enumerable and * non-enumerable properties. */ export declare function Create(hidden: ObjectLike, enumerable: ObjectLike, options?: ObjectLike): ObjectLike; export {};