import { Plugin } from "./types"; export interface IMaskPluginOptions { visible: boolean; text?: string; } declare class MaskPlugin extends Plugin { private _visible; private _text; private _textEl; constructor(options?: Partial); set visible(v: boolean); set text(v: string); protected beforeDestroy(): void; init(): HTMLDivElement; } export default MaskPlugin;