import { TypedEvents } from 'events-constructor'; export declare const EVENT_NAMES: readonly ["balancing-scheduled", "balancing-started", "balancing-stopped", "parameters-updated"]; export type TEventMap = { 'balancing-scheduled': { delay: number; }; 'balancing-started': { delay: number; }; 'balancing-stopped': Record; 'parameters-updated': RTCRtpSendParameters; }; export type TEvents = TypedEvents; export declare const createEvents: () => TypedEvents;