import type { FlagInput } from '@oclif/core/parser'; import type { Flow2SdlOptions } from '../../generate/flow2sdl.js'; import type { CommonImportOptions } from '../../generate/import-command.js'; import type { Workspace } from '../../shared/types.js'; import { ImportCommandBase } from '../../generate/import-command.js'; type InteractiveFlow2SdlOptions = Pick; type FlowAnswers = { flow: string; endpoint: string; header: string; }; export default class ImportFlow extends ImportCommandBase { static description: string; get source(): "flow"; static flags: FlagInput; static args: { flow: import("@oclif/core/interfaces").Arg>; }; protected import(commonOptions: CommonImportOptions, workspace: Workspace): Promise>; getImportOptionsInteractively(defaults?: Partial): Promise; } export {}; //# sourceMappingURL=flow.d.ts.map