import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The operating mode for an account. */ export declare const Mode: { readonly Sandbox: "sandbox"; readonly Production: "production"; }; /** * The operating mode for an account. */ export type Mode = ClosedEnum; /** @internal */ export declare const Mode$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Mode$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=mode.d.ts.map