export declare type DeepPartial = { [P in keyof T]?: DeepPartial; }; export declare type ObjectType = { new (): T; } | Function;