import { Controller } from '@textbus/core';
export declare class Dialog {
    private controller;
    private elementRef;
    private dialogWrapper;
    private timer;
    private subs;
    constructor(controller: Controller);
    show(element: HTMLElement): void;
    hide(): void;
    destroy(): void;
}
