import * as z from "zod"; import { OpenEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The type of identification document */ export declare enum IdentificationCreateType { TypeUnspecified = "TYPE_UNSPECIFIED", Ssn = "SSN", Cpf = "CPF" } /** * The type of identification document */ export type IdentificationCreateTypeOpen = OpenEnum; /** * Represents an identification document */ export type IdentificationCreate = { /** * CLDR format */ regionCode: string; /** * The type of identification document */ type: IdentificationCreateTypeOpen; /** * The value of the identification document */ value: string; }; /** @internal */ export declare const IdentificationCreateType$inboundSchema: z.ZodType; /** @internal */ export declare const IdentificationCreateType$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 IdentificationCreateType$ { /** @deprecated use `IdentificationCreateType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IdentificationCreateType$outboundSchema` instead. */ const outboundSchema: z.ZodType; } /** @internal */ export declare const IdentificationCreate$inboundSchema: z.ZodType; /** @internal */ export type IdentificationCreate$Outbound = { region_code: string; type: string; value: string; }; /** @internal */ export declare const IdentificationCreate$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 IdentificationCreate$ { /** @deprecated use `IdentificationCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IdentificationCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IdentificationCreate$Outbound` instead. */ type Outbound = IdentificationCreate$Outbound; } export declare function identificationCreateToJSON(identificationCreate: IdentificationCreate): string; export declare function identificationCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=identificationcreate.d.ts.map