import React from 'react'; import type { VideoRef, VideoProps } from './types'; declare const VideoBase: React.ForwardRefExoticComponent>; type VideoComponent = typeof VideoBase & { isAvailable: boolean; }; export declare const Video: VideoComponent; export declare function clearCache(): Promise; export declare function getWidevineLevel(): Promise; export declare function isCodecSupported(mimeType: string, width: number, height: number): Promise; export declare function isHEVCSupported(): Promise; export {};