export declare type OneOf = T | U extends object ? (Without & U) | (Without & T) : T | U; declare type Without = { [P in Exclude]?: never; }; export {}; //# sourceMappingURL=OneOf.d.ts.map