/**
 * SharePoint Framework support for displaying pop-up dialog boxes.
 *
 * @remarks
 * This library provides simple stock dialogs such as {@link Dialog.alert}
 * and {@link Dialog.prompt}, along with a general framework for building
 * custom dialog boxes that participate in the focus management system for
 * SharePoint Framework applications.
 *
 * @packagedocumentation
 */
export { default as Dialog } from './Dialog';
export type { IDialogConfiguration, IDialogShowOptions, IAlertOptions, IPromptOptions } from './IDialog';
export type { ISecondaryDialogProvider } from './SecondaryDialogProvider';
export { default as BaseDialog, _DialogState } from './BaseDialog';
//# sourceMappingURL=index.d.ts.map