export declare type Partial = { [P in keyof T]?: T[P]; }; export declare type DeepPartial = { [P in keyof T]?: DeepPartial; };