/**
 * ICE Candidate Stat collected from the RTC Stats Report
 */
export declare class CandidateStat {
    label: string;
    id: string;
    address: string;
    candidateType: string;
    port: number;
    protocol: 'tcp' | 'udp';
}
