export declare enum MsgBoxButtons { OK = 0, OKCancel = 1, AbortRetryIgnore = 2, YesNoCancel = 3, YesNo = 4, RetryCancel = 5, DeleteConfirm = 6 } export declare enum MsgBoxIcon { None = 0, Error = 1, Question = 2, Warning = 3, Information = 4 } export declare enum DialogResult { OK = 0, Cancel = 1, Abort = 2, Retry = 3, Ignore = 4, Yes = 5, No = 6 } export declare enum TextColor { Default = 0, Danger = 1, Info = 2, Secondary = 3, Primary = 4, Success = 5, Warning = 6, Light = 7, Dark = 8, Muted = 9, White = 10 } export declare class DialogConfig { icon: MsgBoxIcon; iconColor: TextColor; buttons: MsgBoxButtons; constructor(options?: any); private _dialogConfig; createDefaultOptions(customOpts?: any): { icon: string; iconColor: string; buttons: any[]; callback: (cancel: any) => void; }; } export declare class DialogEventArgs { state: string; content?: any; constructor(state: string, content?: any); }