import { Call, CallAgent } from '@azure/communication-calling';
import { TeamsCall as TeamsCallBeta, CallCommon as CallCommonBeta, CallAgentCommon as CallAgentCommonBeta } from '@azure/communication-calling';
/**
 * @public
 * The common interface for all types of Calls
 */
export type CallCommon = Call | CallCommonBeta;
/**
 * @public
 * The common interface for all types of CallAgents
 */
export type CallAgentCommon = CallAgent | CallAgentCommonBeta;
/**
 * @beta
 */
export type TeamsCall = never | TeamsCallBeta;
//# sourceMappingURL=BetaToStableTypes.d.ts.map