import { z, ZodType } from "zod"; import { SentryCommand } from "../../types/index.js"; export { discoverPackagesUnderPath } from "../../utils/ui/helpers.js"; declare const SetupConfigSchema: z.ZodObject<{ debug: z.ZodOptional; restart: z.ZodOptional; }, "strip", z.ZodTypeAny, { debug?: boolean | undefined; restart?: boolean | undefined; }, { debug?: boolean | undefined; restart?: boolean | undefined; }>; type SetupConfig = z.infer; export default class Setup extends SentryCommand { static description: string; static examples: string[]; static flags: { debug: import("@oclif/core/interfaces").BooleanFlag; restart: import("@oclif/core/interfaces").BooleanFlag; }; get commandId(): string; get configSchema(): ZodType; run(): Promise; private resolveWorkspaceIdForDesignSystem; private resolveDesignSystemName; private ensureWorkspaceSetupEligibility; private ensureSandboxTemplateAccess; } //# sourceMappingURL=setup.d.ts.map