import { ComponentInterface } from '../../stencil-public-runtime'; export interface Danmu { text: string; color: string; time: number; key: number; bottom: string; } export declare class VideoDanmu implements ComponentInterface { private list; private danmuElList; private currentTime; enable: boolean; danmuList: Danmu[]; ensureProperties(danmu: Partial): Danmu; sendDanmu(danmuList?: Partial | Partial[]): Promise; tick(currentTime: number): Promise; componentDidUpdate(): void; render(): any; }