import { Component, Attributes } from 'jinge'; import { LocaleDict } from '../_locales/common'; declare function showDialogAlert(opts: string | DialogAlertAttrs, closeCallback?: () => void | undefined | boolean): void; export interface DialogAlertAttrs { __portalDisabled?: boolean; active?: boolean; title: string; content?: string; confirmText?: string; } export declare class DialogAlert extends Component { static template: string; static show: typeof showDialogAlert; __portalDisabled: boolean; active: boolean; title: string; content: string; confirmText: string; _localeChangeHandler: () => void; locale: LocaleDict; constructor(attrs: Attributes); _onLocaleChange(locale: LocaleDict): void; onClick(): void; passActive(active: boolean, action: string): void; } export {};