import { Attributes, Component } from 'jinge'; export interface DialogAttrs { __portalDisabled?: boolean; active?: boolean; backdrop?: boolean; backdropClass?: string; closeOnEsc?: boolean; fullscreen?: boolean; closeOnOutsideClick?: boolean; } export declare class Dialog extends Component { static template: string; __portalDisabled: boolean; _active: boolean; backdrop: boolean; backdropClass: string; closeOnEsc: boolean; fullscreen: boolean; closeOnOutsideClick: boolean; constructor(attrs: Attributes); onKeydown(evt: KeyboardEvent): void; close(action: string): void; get active(): boolean; set active(v: boolean); onClick(): void; }