import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type KYCFieldTypeResponseInternal = { name?: string | undefined; source?: string | undefined; value?: string | undefined; }; /** @internal */ export declare const KYCFieldTypeResponseInternal$inboundSchema: z.ZodType; /** @internal */ export type KYCFieldTypeResponseInternal$Outbound = { name?: string | undefined; source?: string | undefined; value?: string | undefined; }; /** @internal */ export declare const KYCFieldTypeResponseInternal$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 KYCFieldTypeResponseInternal$ { /** @deprecated use `KYCFieldTypeResponseInternal$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `KYCFieldTypeResponseInternal$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `KYCFieldTypeResponseInternal$Outbound` instead. */ type Outbound = KYCFieldTypeResponseInternal$Outbound; } export declare function kycFieldTypeResponseInternalToJSON(kycFieldTypeResponseInternal: KYCFieldTypeResponseInternal): string; export declare function kycFieldTypeResponseInternalFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=kycfieldtyperesponseinternal.d.ts.map