import * as z from "zod/v4"; export type CreateExternalAIModelCheckGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type CreateExternalAIModelCheckRequest = { /** * Unique identifier for the deployment group. */ id: string; publicModelId: string; }; /** @internal */ export type CreateExternalAIModelCheckRequest$Outbound = { id: string; publicModelId: string; }; /** @internal */ export declare const CreateExternalAIModelCheckRequest$outboundSchema: z.ZodType; export declare function createExternalAIModelCheckRequestToJSON(createExternalAIModelCheckRequest: CreateExternalAIModelCheckRequest): string; //# sourceMappingURL=createexternalaimodelcheck.d.ts.map