/**
 * WebRTC Collector
 * Collects WebRTC-related information including local IPs
 */
import { CollectorMetadata, WebRTCData } from "../types";
import { AsyncBaseCollector } from "./base";
/**
 * WebRTC Collector
 * Can reveal local IP addresses and network topology
 */
export declare class WebRTCCollector extends AsyncBaseCollector<WebRTCData> {
    readonly name = "webrtc";
    readonly metadata: CollectorMetadata;
    isSupported(): boolean;
    collect(): Promise<WebRTCData>;
    private collectWebRTC;
    private hashSDP;
}
//# sourceMappingURL=webrtc.d.ts.map