import { z, ZodType } from "zod"; import { SentryCommand } from "../../../types/index.js"; declare const AnalyzeStatusConfig: z.ZodObject<{ designSystemId: z.ZodOptional; }, "strip", z.ZodTypeAny, { designSystemId?: string | undefined; }, { designSystemId?: string | undefined; }>; type AnalyzeStatusConfig = z.infer; export default class AnalyzeStatus extends SentryCommand { static hidden: boolean; static args: {}; static description: string; static examples: string[]; static flags: { designSystemId: import("@oclif/core/interfaces").OptionFlag; }; get commandId(): string; get configSchema(): ZodType; run(): Promise; } export {}; //# sourceMappingURL=status.d.ts.map