import type { ValuesOf } from '../../Types/ValuesOf'; /** * `MessageBoxResult` - The `MessageBoxResult` object is used to describe the different types of message box results. * * @public */ export declare const MessageBoxResult: { /** * `None` - The message box returns no result. */ readonly None: 0; /** * `OK` - The result value of the message box is OK. */ readonly OK: 1; /** * `Cancel` - The result value of the message box is Cancel. */ readonly Cancel: 2; /** * `Yes` - The result value of the message box is Yes. */ readonly Yes: 6; /** * `No` - The result value of the message box is No. */ readonly No: 7; }; /** * @public */ export type MessageBoxResult = ValuesOf; //# sourceMappingURL=MessageBoxResult.d.ts.map