import { TypedEvent } from '@photo-sphere-viewer/core'; import type { ContactPlugin } from './ContactPlugin'; export declare class ContactEvent extends TypedEvent { readonly visible: any; static readonly type = "contactus"; constructor(visible: any); } export type ContactEvents = ContactEvent;