import { Connection } from '../classes/connection'; import { WMVConnections } from '../models/connections'; export declare class ConnectionManager { private readonly connections; set(name: string, connection: Connection): void; getAll(): WMVConnections; get(name: string): Connection | undefined; delete(name: string): void; }