export declare class IceCandidate {
    private _protocol;
    private _ip;
    private _port;
    private _type;
    constructor(stats: any);
    get protocol(): string;
    set protocol(value: string);
    get ip(): string;
    set ip(value: string);
    get port(): number;
    set port(value: number);
    get type(): string;
    set type(value: string);
    toJSON(): {
        protocol: string;
        ip: string;
        port: number;
        type: string;
    };
}
