import type winston from 'winston';
import type { Plugin } from '../plugin/plugin.js';
export declare enum Network {
    TCP = "tcp"
}
export declare const startServer: (logger: winston.Logger, address: string, plugin: Plugin) => void;
