import EasCommand from '../../commandUtils/EasCommand'; export declare class WorkflowCreate extends EasCommand { static description: string; static args: { name: string; description: string; required: boolean; }[]; static flags: { 'non-interactive': import("@oclif/core/lib/interfaces").BooleanFlag; }; static contextDefinition: { projectDir: import("../../commandUtils/context/ProjectDirContextField").default; }; runAsync(): Promise; private ensureWorkflowsDirectoryExistsAsync; private createWorkflowFileAsync; }