import VertinhoClient from "../verto/VertoClient";
export default class ConferenceLiveArray {
    private hashTable;
    private orderedCallIds;
    private lastSerialNumber;
    private serialNumberErrors;
    private verto;
    private liveArrayChannel;
    private conferenceName;
    private callbacks;
    private subscription;
    private destroyed;
    constructor(verto: VertinhoClient, liveArrayChannel: any, conferenceName: string, callbacks?: {});
    destroy(): void;
    private insertValue;
    deleteValue(callId: string): boolean;
    private checkSerialNumber;
    private handleBootingEvent;
    private handleAddingEvent;
    private handleModifyingEvent;
    private handleDeleteEvent;
    private handleEvent;
    private bootstrap;
}
