import * as z from "zod/v4"; export type GetExternalAIBindingGlobals = { /** * 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 GetExternalAIBindingRequest = { /** * Unique identifier for the deployment group. */ id: string; }; /** @internal */ export type GetExternalAIBindingRequest$Outbound = { id: string; }; /** @internal */ export declare const GetExternalAIBindingRequest$outboundSchema: z.ZodType; export declare function getExternalAIBindingRequestToJSON(getExternalAIBindingRequest: GetExternalAIBindingRequest): string; //# sourceMappingURL=getexternalaibinding.d.ts.map