import { RTCSessionDescription } from 'react-native-webrtc';
import PeerConnectionParams from './PeerConnectionParams';
export default class FSRTCPeerConnection {
    private options;
    private peer;
    private gathering?;
    private done;
    constructor(options: PeerConnectionParams);
    addAnswerSDP(sdp: RTCSessionDescription, cbSuccess?: (value: any) => any, cbError?: (reason: any) => PromiseLike<never>): void;
    stop(): void;
}
