import { WebPlugin } from '@capacitor/core'; import type { VideoData, VideoDataBridgePlugin } from './definitions'; export declare class VideoDataBridgeWeb extends WebPlugin implements VideoDataBridgePlugin { openVideo(videoData: VideoData): Promise<{ success: boolean; }>; openDownloadsPage(): Promise<{ success: boolean; }>; }