export declare type DeepPartial<T> = {
    [p in keyof T]?: DeepPartial<T[p]>;
};
