import { z } from 'zod'; import { BaseCommand } from '../base-command'; declare const flagsSchema: z.ZodObject<{ input: z.ZodOptional; separate: z.ZodDefault; userId: z.ZodOptional; projectId: z.ZodOptional; }, "strip", z.ZodTypeAny, { separate: boolean; projectId?: string | undefined; input?: string | undefined; userId?: string | undefined; }, { projectId?: string | undefined; input?: string | undefined; userId?: string | undefined; separate?: boolean | undefined; }>; export declare class ImportWorkflowsCommand extends BaseCommand> { run(): Promise; private checkRelations; catch(error: Error): Promise; private reportSuccess; private getWorkflowOwner; private workflowExists; private readWorkflows; private getProject; } export {};