///
import http from "http";
import { Initializer, Connection } from "actionhero";
declare module "actionhero" {
interface Api {
next: {
app?: any;
render?: (Connection: Connection) => void;
handle?: (req: http.ClientRequest, res: http.ServerResponse) => void;
};
}
}
export declare class Next extends Initializer {
constructor();
initialize(): Promise;
start(): Promise;
stop(): Promise;
}