import { AddonInterface } from '../Addons'; import { EnrichedPlyr } from '../../../../types/plyr'; import { Playback } from '../../../../types/Playback'; import { InterfaceOptions } from '../../../InterfaceOptions'; import { PlaybackSegment } from '../../../MediaPlayer'; import './TitleOverlay.scss'; export declare class TitleOverlay implements AddonInterface { private readonly videoTitle; constructor(plyr: EnrichedPlyr, playback: Playback, _options: InterfaceOptions); static isEnabled(_plyr: EnrichedPlyr, playback: Playback, options: InterfaceOptions): boolean; private show; private hide; destroy(): void; updateSegment(_segment: PlaybackSegment): void; }