import { EventEmitter } from 'ee-ts'; export interface StorageMediaCaptureEvents { error(e: Error): void; close(): void; } export declare class StorageMediaCapture extends EventEmitter { id: string; sdpResolver: string; stream: MediaStream[] | null; pc: RTCPeerConnection | null; token: string; offerOptions: RTCOfferOptions; restartId: string; name: string; constructor(id: string, name: string, mediaStream: MediaStream[], iceServers: RTCIceServer[], sdpResolver: string, token: string); hangup(): Promise; close(): void; cast(): Promise; restart(): Promise; } //# sourceMappingURL=storage.d.ts.map