import { AdtConnection } from "navidev-adt-api";
import { ResultSearchServices } from "./serviceSearchType";
export default class ServiceSearchApp {
    protected connectionController: AdtConnection;
    constructor(connectionController: AdtConnection);
    /**
     * Busqueda de servicios por nombre.
     * @param serviceName The name of the service to search for.
     * @returns A promise that resolves to the search results.
     */
    searchService(serviceName: string): Promise<ResultSearchServices>;
}
//# sourceMappingURL=serviceSearchApp.d.ts.map