import * as sdkTypes from "@supernovaio/sdk"; import { z, ZodType } from "zod"; import { SentryCommand } from "../types/index.js"; interface DescribeWorkspacesFlags { apiKey: string; proxyUrl?: string; } declare const DescribeWorkspaceConfigSchema: z.ZodEffects; workspaceId: z.ZodString; }, "strip", z.ZodTypeAny, { workspaceId: string; apiKey: string; proxyUrl?: string | undefined; }, { workspaceId: string; apiKey: string; proxyUrl?: string | undefined; }>, { workspaceId: string; apiKey: string; proxyUrl?: string | undefined; }, { workspaceId: string; apiKey: string; proxyUrl?: string | undefined; }>; type DescribeWorkspaceConfig = z.infer; export declare class DescribeWorkspaces extends SentryCommand { static aliases: string[]; static description: string; static examples: string[]; static flags: { apiKey: import("@oclif/core/interfaces").OptionFlag; proxyUrl: import("@oclif/core/interfaces").OptionFlag; }; get commandId(): string; get configSchema(): ZodType; getWorkspaces(flags: DescribeWorkspacesFlags): Promise<{ instance: sdkTypes.Supernova; workspaces: Array; }>; run(): Promise; } export {}; //# sourceMappingURL=describe-workspaces.d.ts.map