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