export interface IDialog { visible?: boolean; hide?: boolean; title?: string; text?: string; component?: any; persistent?: boolean; fullscreen?: boolean; scrollable?: boolean; data?: any; width?: number; actions?: string[]; actionCallback?(action: string): any; }