import { Destination } from "../../ocra/api";
import { InboundCall } from "../InboundCall";
import { OutboundCall } from "../OutboundCall";
export declare class CallDestination {
    private call;
    private localUserId;
    private destinationDomain;
    private destinationUser;
    private destinationType;
    constructor(call: InboundCall | OutboundCall, localUserId: string);
    private static getDestinationTypeByDomain;
    getDestination(): Destination | undefined;
}
