import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * An enumeration. */ export declare const Network: { readonly Mainnet: "mainnet"; readonly Testnet: "testnet"; }; /** * An enumeration. */ export type Network = ClosedEnum; /** @internal */ export declare const Network$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Network$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 Network$ { /** @deprecated use `Network$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Mainnet: "mainnet"; readonly Testnet: "testnet"; }>; /** @deprecated use `Network$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Mainnet: "mainnet"; readonly Testnet: "testnet"; }>; } //# sourceMappingURL=network.d.ts.map