import { APIMethods } from './utils/types.js'; type ConnectToSwaggerParams = { swaggerURLs: string[]; }; declare function connectToSwagger({ swaggerURLs, }: ConnectToSwaggerParams): Promise<{ serviceName: string; selectedApiMethod: APIMethods; selectedPath: string; requestTypes: string; responseTypes: string; }>; export { connectToSwagger };