///
import { Request as RawRequest, Response as RawResponse } from 'express';
import * as http from 'http';
export declare const ServerAware: unique symbol;
export declare const HTTP_MIDDLEWARE_PRIORITY: number;
export interface Request extends RawRequest {
}
export interface Response extends RawResponse {
body?: any;
}
export interface ServerAware {
setServer(server: http.Server): Promise;
}
//# sourceMappingURL=http-protocol.d.ts.map