import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdk-validation-error.js"; /** * Preflight verdict */ export type PostApiSandboxPreflightResponse = { provider: string; compatible: boolean; /** * Empty when compatible. Each entry names a concrete incompatibility. */ violations: Array; }; /** @internal */ export declare const PostApiSandboxPreflightResponse$inboundSchema: z.ZodMiniType; export declare function postApiSandboxPreflightResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=post-api-sandbox-preflight.d.ts.map