import type { Connection } from 'ray-streaming'; export declare class Microphone { private connection; private audioOptions?; private currentTrack?; constructor(connection: Connection, audioOptions?: MediaTrackConstraintSet | undefined); start(): Promise; stop(): void; }