import type { ErrorOr, MachineConfiguration } from '../shared/types.js'; import type { IntrospectionServiceResponse } from './helpers.js'; import type { CommonImportOptions } from './import-command.js'; export type OpenApi2SdlOptions = CommonImportOptions & { openapi: string; }; export declare const openapi2sdl: ({ openapi }: OpenApi2SdlOptions, configuration: MachineConfiguration) => Promise>; //# sourceMappingURL=openapi2sdl.d.ts.map