import * as z from "zod/v4"; export type ListCommandDeploymentsGlobals = { /** * 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 ListCommandDeploymentsRequest = { /** * Filter by project ID or name. */ project?: string | undefined; /** * Search deployment or deployment group names */ search?: string | undefined; }; /** @internal */ export type ListCommandDeploymentsRequest$Outbound = { project?: string | undefined; search?: string | undefined; }; /** @internal */ export declare const ListCommandDeploymentsRequest$outboundSchema: z.ZodType; export declare function listCommandDeploymentsRequestToJSON(listCommandDeploymentsRequest: ListCommandDeploymentsRequest): string; //# sourceMappingURL=listcommanddeployments.d.ts.map