import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The type of address reference */ export declare enum AddressReferenceIdTag { Id = "id" } export type AddressReferenceId = { /** * The type of address reference */ dotTag: AddressReferenceIdTag; /** * The address's ID */ id: string; }; /** @internal */ export declare const AddressReferenceIdTag$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const AddressReferenceIdTag$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace AddressReferenceIdTag$ { /** @deprecated use `AddressReferenceIdTag$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum; /** @deprecated use `AddressReferenceIdTag$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum; } /** @internal */ export declare const AddressReferenceId$inboundSchema: z.ZodType; /** @internal */ export type AddressReferenceId$Outbound = { ".tag": string; id: string; }; /** @internal */ export declare const AddressReferenceId$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 AddressReferenceId$ { /** @deprecated use `AddressReferenceId$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AddressReferenceId$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AddressReferenceId$Outbound` instead. */ type Outbound = AddressReferenceId$Outbound; } export declare function addressReferenceIdToJSON(addressReferenceId: AddressReferenceId): string; export declare function addressReferenceIdFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=addressreferenceid.d.ts.map