import * as z from "zod/v4"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const ExternalAIModelCheckStatus: { readonly Pending: "pending"; readonly Running: "running"; readonly Verified: "verified"; readonly Denied: "denied"; readonly Failed: "failed"; readonly Cancelled: "cancelled"; }; export type ExternalAIModelCheckStatus = ClosedEnum; export type ExternalAIModelCheck = { id: string; publicModel: string; status: ExternalAIModelCheckStatus; blockerCode: string | null; error?: any | null | undefined; requestedAt: Date; completedAt: Date | null; }; /** @internal */ export declare const ExternalAIModelCheckStatus$inboundSchema: z.ZodEnum; /** @internal */ export declare const ExternalAIModelCheck$inboundSchema: z.ZodType; export declare function externalAIModelCheckFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=externalaimodelcheck.d.ts.map