import * as z from "zod/v4"; export type ResolveCommandTargetGlobals = { /** * 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 ResolveCommandTargetRequest = { /** * Deployment to resolve the target for */ deploymentId: string; /** * Explicit resource id to resolve; must be a command-capable resource */ target?: string | undefined; }; /** @internal */ export type ResolveCommandTargetRequest$Outbound = { deploymentId: string; target?: string | undefined; }; /** @internal */ export declare const ResolveCommandTargetRequest$outboundSchema: z.ZodType; export declare function resolveCommandTargetRequestToJSON(resolveCommandTargetRequest: ResolveCommandTargetRequest): string; //# sourceMappingURL=resolvecommandtarget.d.ts.map