export interface MsgBoxOptions { message?: string; title?: string; header?: string; style?: string; callback?: (option?: string) => boolean | void; okText?: string; yesText?: string; noText?: string; yesButtonMod?: string; noButtonMod?: string; items?: any; children?: any; store?: any; initiatingEvent?: React.SyntheticEvent; } export declare class MsgBox { buttonMod?: string; footerDirection?: string; footerJustify?: "start" | "center" | "end" | "space-between" | "space-around" | "space-evenly" | false; yesText?: string; noText?: string; static alert(options: string | MsgBoxOptions): Promise; static yesNo(options: string | MsgBoxOptions): Promise; } export declare function enableMsgBoxAlerts(): void; //# sourceMappingURL=MsgBox.d.ts.map