export interface RTCIceCandidatePair {
    local?: RTCIceCandidate;
    remote?: RTCIceCandidate;
}
export default interface IConnectionObserver {
    onIceConnectionChange(newState: RTCIceConnectionState): void;
    onConnectionStateChange(newState: RTCPeerConnectionState): void;
    onIceCandidate(candidate: RTCIceCandidate): void;
    onSelectedCandidatePairChange(candidatePair: RTCIceCandidatePair): void;
}
