import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; export declare enum Code { NoProviderConfigured = "NO_PROVIDER_CONFIGURED" } export type Next = { command?: string | undefined; url?: string | undefined; }; export type Directive = { next: Array; }; /** @internal */ export declare const Code$inboundSchema: z.ZodMiniEnum; /** @internal */ export declare const Next$inboundSchema: z.ZodMiniType; export declare function nextFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const Directive$inboundSchema: z.ZodMiniType; export declare function directiveFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=error-message-code.d.ts.map