import { Server } from './http.js';
import { Http2Server } from './http2';
import type { ServerBootParams } from './types';
declare const server: {
    run(params: ServerBootParams): Promise<Http2Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse, typeof import("http2").Http2ServerRequest, typeof import("http2").Http2ServerResponse> | import("http").Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse> | Server<typeof import("http").IncomingMessage, typeof import("http").ServerResponse>>;
};
export default server;
