export type RecursivePartial<Type> = {
    [Property in keyof Type]?: RecursivePartial<Type[Property]>;
};
//# sourceMappingURL=utils.d.ts.map