import { type IWebSocketEvent } from './IWebSocketEvent.js';
export declare class WebSocketEvent implements IWebSocketEvent {
    type: string;
    content: Uint8Array | string | null;
    constructor(type: string, content?: Uint8Array | string | null);
    getType(): string;
    getContent(): string | Uint8Array | null;
}
//# sourceMappingURL=WebSocketEvent.d.ts.map