export interface DialogAlert { icon?: string; title: string; body: string; image?: any; component?: any; html?: any; } export interface DialogConfirm extends DialogAlert { type: string; result: any; } export interface DialogPrompt extends DialogAlert { type: string; value: any; result: any; } export declare const dialogStore: any;