import { LyraJSAPIMethodBrowser } from './index'; export interface IAlertOptions { title: string; content?: string; } export interface IConfirmOptions { title: string; showLocatedCity: string; message: string; align: string; okButton: string; cancelButton: string; } export interface IConfirmResponse { ok: boolean; } export interface IDialogAPI { alert: LyraJSAPIMethodBrowser; confirm: LyraJSAPIMethodBrowser; } //# sourceMappingURL=dialog.d.ts.map