import type { HeaderInput } from '../shared/header.js'; import type { ErrorOr, MachineConfiguration } from '../shared/types.js'; import type { IntrospectionServiceResponse } from './helpers.js'; import type { CommonImportOptions } from './import-command.js'; export type Flow2SdlOptions = CommonImportOptions & { flow: string; endpoint: string; headers: readonly HeaderInput[]; }; export declare const flow2sdl: ({ flow, endpoint, headers }: Flow2SdlOptions, configuration: MachineConfiguration) => Promise>; //# sourceMappingURL=flow2sdl.d.ts.map