/** * {@link DDialog} mode options. */ export declare const DDialogMode: { readonly MODAL: 0; readonly MODELESS: 1; readonly MENU: 2; }; export type DDialogMode = (typeof DDialogMode)[keyof typeof DDialogMode];