import { Connector } from "./connector"; export interface ServerOptions { configuration: string; host: string; port: number; serviceTokenSecret: string | undefined; logLevel: string; prettyPrintLogs: string; bodyLimit: number | undefined; } export declare function startServer(connector: Connector, options: ServerOptions): Promise; //# sourceMappingURL=server.d.ts.map