import { APIMethods } from './types.js'; declare class ServiceInquirer { serviceName: string; serviceMethod: string; constructor(); promptForServiceName(): Promise; promptServiceMethod(): Promise; promptSwaggerDocs(swaggerDocs: string[]): Promise; promptServicePaths(routes: string[]): Promise; promptPathMethod(methods: string[]): Promise; } export { ServiceInquirer };