import { NativeElement } from '@nonoun/native-core'; /** * Modal dialog wrapper using a native dialog element promoted to the top layer. * @attr {boolean} no-close-on-escape - Prevents closing on Escape key * @attr {boolean} no-close-on-backdrop - Prevents closing on backdrop click * @fires close - Fired when the dialog is closed */ export declare class NDialog extends NativeElement { #private; get open(): boolean; showModal(): void; close(): void; setup(): void; teardown(): void; } //# sourceMappingURL=dialog-element.d.ts.map