export function openDialog(options: any): HTMLElement;
export function confirm(title?: string | undefined, message: string | HTMLElement, resolveText?: string | undefined, rejectText?: string | undefined): Promise<boolean>;
export function alert(title?: string | undefined, message: string | HTMLElement, resolveText?: string | undefined, icon: "SUCCESS" | "INFO" | "QUESTION" | "WARNING" | string): Promise<boolean>;
export function showSpinner(message?: string | undefined): () => any;
