///
import * as http from 'http';
import * as https from 'https';
import { IServiceConfig, ServiceDeps } from '../shared';
import { TeardownHandler } from '../shared/teardown';
export declare function setupExpress(server: http.Server | https.Server, config: IServiceConfig, deps: ServiceDeps): Promise;