import { Participant, Room } from "livekit-client";
declare class Presenter {
    #private;
    constructor(room: Room);
    find: (userId: string) => Participant | undefined;
}
export default Presenter;
