import { TypedEvents } from 'events-constructor'; import { EContentedStreamCodec } from '../ApiManager'; declare enum EEvent { AVAILABLE = "available", NOT_AVAILABLE = "not-available" } export declare const EVENT_NAMES: readonly [EEvent.AVAILABLE, EEvent.NOT_AVAILABLE]; export type TEventMap = { available: { codec?: EContentedStreamCodec; }; 'not-available': Record; }; export type TEvents = TypedEvents; export declare const createEvents: () => TypedEvents; export {};