import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DataSourceAddressResponseInternal, DataSourceAddressResponseInternal$Outbound } from "./datasourceaddressresponseinternal.js"; import { DataSourceEmailAddressResponseInternal, DataSourceEmailAddressResponseInternal$Outbound } from "./datasourceemailaddressresponseinternal.js"; import { DataSourceIdentifiersResponseInternal, DataSourceIdentifiersResponseInternal$Outbound } from "./datasourceidentifiersresponseinternal.js"; import { DataSourceNameResponseInternal, DataSourceNameResponseInternal$Outbound } from "./datasourcenameresponseinternal.js"; export type DataSourceInternal = { address?: DataSourceAddressResponseInternal | undefined; cipConfidence?: string | undefined; email?: DataSourceEmailAddressResponseInternal | undefined; identifiers?: DataSourceIdentifiersResponseInternal | undefined; name?: DataSourceNameResponseInternal | undefined; reasonCodes?: Array | undefined; }; /** @internal */ export declare const DataSourceInternal$inboundSchema: z.ZodType; /** @internal */ export type DataSourceInternal$Outbound = { address?: DataSourceAddressResponseInternal$Outbound | undefined; cipConfidence?: string | undefined; email?: DataSourceEmailAddressResponseInternal$Outbound | undefined; identifiers?: DataSourceIdentifiersResponseInternal$Outbound | undefined; name?: DataSourceNameResponseInternal$Outbound | undefined; reasonCodes?: Array | undefined; }; /** @internal */ export declare const DataSourceInternal$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 DataSourceInternal$ { /** @deprecated use `DataSourceInternal$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `DataSourceInternal$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `DataSourceInternal$Outbound` instead. */ type Outbound = DataSourceInternal$Outbound; } export declare function dataSourceInternalToJSON(dataSourceInternal: DataSourceInternal): string; export declare function dataSourceInternalFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=datasourceinternal.d.ts.map