import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { AmlTypeListResponseInternal, AmlTypeListResponseInternal$Outbound } from "./amltypelistresponseinternal.js"; export type KYCInternal = { amlTypeLists?: Array | undefined; totalHits?: number | undefined; }; /** @internal */ export declare const KYCInternal$inboundSchema: z.ZodType; /** @internal */ export type KYCInternal$Outbound = { amlTypeLists?: Array | undefined; totalHits?: number | undefined; }; /** @internal */ export declare const KYCInternal$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 KYCInternal$ { /** @deprecated use `KYCInternal$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `KYCInternal$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `KYCInternal$Outbound` instead. */ type Outbound = KYCInternal$Outbound; } export declare function kycInternalToJSON(kycInternal: KYCInternal): string; export declare function kycInternalFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=kycinternal.d.ts.map