import type { ValuesOf } from '../../Types/ValuesOf'; /** * `MessageBoxButtons` - The `MessageBoxButtons` object is used to describe the different types of message box buttons. * * @public */ export declare const MessageBoxButtons: { /** * `ok` - Only an OK button is displayed. */ readonly OK: "ok"; /** * `okCancel` - OK and Cancel buttons are displayed. */ readonly OKCancel: "okCancel"; /** * `yesNoCancel` - Yes, No, and Cancel buttons are displayed. */ readonly YesNoCancel: "yesNoCancel"; /** * `yesNo` - Yes and No buttons are displayed. */ readonly YesNo: "yesNo"; }; /** * @public */ export type MessageBoxButtons = ValuesOf; //# sourceMappingURL=MessageBoxButtons.d.ts.map