import { z } from 'zod'; import { BaseCommand } from '../base-command'; declare const flagsSchema: z.ZodObject<{ userId: z.ZodOptional; projectId: z.ZodOptional; deleteWorkflowsAndCredentials: z.ZodOptional; }, "strip", z.ZodTypeAny, { projectId?: string | undefined; userId?: string | undefined; deleteWorkflowsAndCredentials?: boolean | undefined; }, { projectId?: string | undefined; userId?: string | undefined; deleteWorkflowsAndCredentials?: boolean | undefined; }>; export declare class Reset extends BaseCommand> { run(): Promise; getProject(userId?: string, projectId?: string): Promise; catch(error: Error): Promise; private getOwner; } export {};