import { IAppController } from '../app.controller.interface';
import { Context, HttpResponse } from '../http';
import { ServiceManager } from '../service-manager';
import { Route } from './route.interface';
export declare function getResponse(route: Route, ctx: Context, services: ServiceManager, appController: IAppController): Promise<HttpResponse>;
