import { ARIAGlobalStatesAndProperties, FoundationElement } from '@ni/fast-foundation'; import { UserDismissed } from '../patterns/dialog/types'; export { UserDismissed }; declare global { interface HTMLElementTagNameMap { 'nimble-dialog': Dialog; } } /** * A nimble-styled dialog. */ export declare class Dialog extends FoundationElement { static readonly UserDismissed: symbol; /** * @public * @description * Prevents dismissing the dialog via the Escape key */ preventDismiss: boolean; /** * @public * @description * Hides the header of the dialog. */ headerHidden: boolean; /** * @public * @description * Hides the footer of the dialog. */ footerHidden: boolean; /** * The ref to the internal dialog element. * * @internal */ readonly dialogElement: HTMLDialogElement; /** @internal */ footerIsEmpty: boolean; /** @internal */ readonly slottedFooterElements?: HTMLElement[]; /** * True if the dialog is open/showing, false otherwise */ get open(): boolean; private resolveShow?; /** * Opens the dialog * @returns Promise that is resolved when the dialog is closed. The value of the resolved Promise is the reason value passed to the close() method, or UserDismissed if the dialog was closed via the ESC key. */ show(): Promise; /** * Closes the dialog * @param reason An optional value indicating how/why the dialog was closed. */ close(reason: CloseReason): void; slottedFooterElementsChanged(_prev: HTMLElement[] | undefined, next: HTMLElement[] | undefined): void; /** * @internal */ cancelHandler(event: Event): boolean; /** * @internal */ closeHandler(event: Event): void; private doResolveShow; } export interface Dialog extends ARIAGlobalStatesAndProperties { } export declare const dialogTag = "nimble-dialog";