import http from 'http'; import https from 'https'; import type { SERVER_TOKEN } from '@tramvai/tokens-server'; import type { LOGGER_TOKEN } from '@tramvai/tokens-common'; import type { ENV_MANAGER_TOKEN } from '@tramvai/module-environment'; export declare const serverFactory: () => http.Server | https.Server; export declare const serverListenCommand: ({ server, logger, envManager, }: { server: typeof SERVER_TOKEN; logger: typeof LOGGER_TOKEN; envManager: typeof ENV_MANAGER_TOKEN; }) => () => void; //# sourceMappingURL=server.d.ts.map