import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DataSourceInternal, DataSourceInternal$Outbound } from "./datasourceinternal.js"; export type IDVDataInternal = { dataSource1?: DataSourceInternal | undefined; dataSource2?: DataSourceInternal | undefined; multiCIPConfidence?: string | undefined; }; /** @internal */ export declare const IDVDataInternal$inboundSchema: z.ZodType; /** @internal */ export type IDVDataInternal$Outbound = { dataSource1?: DataSourceInternal$Outbound | undefined; dataSource2?: DataSourceInternal$Outbound | undefined; multiCIPConfidence?: string | undefined; }; /** @internal */ export declare const IDVDataInternal$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace IDVDataInternal$ { /** @deprecated use `IDVDataInternal$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IDVDataInternal$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IDVDataInternal$Outbound` instead. */ type Outbound = IDVDataInternal$Outbound; } export declare function idvDataInternalToJSON(idvDataInternal: IDVDataInternal): string; export declare function idvDataInternalFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=idvdatainternal.d.ts.map