export interface ServerConfig { port: number; host: string; command: string; args: string[]; cwd: string; debug?: boolean; token?: string; termux?: boolean; https?: boolean; publicUrl?: string; } export declare function startServer(config: ServerConfig): Promise; //# sourceMappingURL=server.d.ts.map