declare class Camera { id: string; name: string | null; _stream: any; constructor(id: string, name: string | null); start(): Promise; stop(): void; static getCameras(): Promise; static _ensureAccess(): Promise; } export default Camera;