///
export interface IDialog extends ng.IPromise {
element(): Object;
scope(): Object;
}
export interface IDialogOptions {
html: string;
title?: string;
subTitle?: string;
icon?: string;
showCloseAction?: boolean;
onConfirm?(scope: any): any;
}
export default function (htmlOrOptions: string | IDialogOptions, parentScope?: any, locals?: any): IDialog;