import { TypedEvent } from '@photo-sphere-viewer/core'; import type { QrcodePlugin } from './QrcodePlugin'; export declare class QrcodeShowEvent extends TypedEvent { static readonly type = "vr-qrcode-show"; constructor(); } export declare class QrcodeHideEvent extends TypedEvent { static readonly type = "vr-qrcode-hide"; constructor(); } export type QrcodeEvents = QrcodeShowEvent | QrcodeHideEvent;