import BaseDialog from './BaseDialog';
/**
 * Internal implementation of a dialog to mimic browser's alert() behavior.
 * Third-party can use this by calling the static method Dialog.alert()
 *
 * @internal
 */
export default class AlertDialog extends BaseDialog {
    private _message;
    constructor(message: string);
    render(): void;
    onAfterClose(): void;
}
//# sourceMappingURL=AlertDialog.d.ts.map