import { Participant, Room } from 'livekit-client';
import { ParticipantHandler } from '../types';
declare class ParticipantEventContainer {
    #private;
    constructor(room: Room, handler: ParticipantHandler);
    bindParticipantEvents: (participant: Participant) => void;
}
export default ParticipantEventContainer;
