import { Call } from "./Call";
import { PhoneCallOptions } from "./options/PhoneCallOptions";
export interface PhoneCall extends Call {
    options(): PhoneCallOptions;
}
