export default class PCPlugin extends BasePlugin {
    static get defaultConfig(): {};
    _clickCount: number;
    initEvents(): void;
    switchPlayPause(e: any): void;
    onMouseMove: (e: any) => void;
    onMouseEnter: (e: any) => void;
    onMouseLeave: (e: any) => void;
    onContextmenu(e: any): void;
    onVideoClick: (e: any) => void;
    clickTimer: any;
    onVideoDblClick: (e: any) => void;
}
import { BasePlugin } from "../../plugin";
