import { Component } from "@adpt/core";
import { HttpServerProps } from "./http_server_types";
/**
 *  Abstract component that represents an HTTP server
 *  @public
 */
export declare abstract class HttpServer extends Component<HttpServerProps> {
    static defaultProps: {
        port: number;
        scope: string;
    };
}
//# sourceMappingURL=HttpServer.d.ts.map