import { Call } from '../Call';
import { Dispatcher } from '../rtc';
/**
 * Registers the default event handlers for a call during its lifecycle.
 *
 * @param call the call to register event handlers for.
 * @param dispatcher the dispatcher.
 */
export declare const registerEventHandlers: (call: Call, dispatcher: Dispatcher) => () => void;
/**
 * Registers event handlers for a call that is of ringing type.
 *
 * @param call the call to register event handlers for.
 */
export declare const registerRingingCallEventHandlers: (call: Call) => () => void;
