import { IncomingCall } from "./IncomingCall";
import { WebrtcCallOptions } from "./options/WebrtcCallOptions";
import { WebrtcCall } from "./WebrtcCall";
export interface IncomingWebrtcCall extends IncomingCall, WebrtcCall {
    accept(options?: WebrtcCallOptions): void;
}
