import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * Status of the API. APIs with status live or beta are callable. */ export declare const ApiStatus: { readonly Live: "live"; readonly Beta: "beta"; readonly Development: "development"; readonly Considering: "considering"; }; /** * Status of the API. APIs with status live or beta are callable. */ export type ApiStatus = ClosedEnum; /** @internal */ export declare const ApiStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ApiStatus$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 ApiStatus$ { /** @deprecated use `ApiStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Live: "live"; readonly Beta: "beta"; readonly Development: "development"; readonly Considering: "considering"; }>; /** @deprecated use `ApiStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Live: "live"; readonly Beta: "beta"; readonly Development: "development"; readonly Considering: "considering"; }>; } //# sourceMappingURL=apistatus.d.ts.map