//#region src/manager.utils.d.ts /** * Behavior when registering a hotkey/sequence that conflicts with an existing registration. * * - `'warn'` - Log a warning to the console but allow both registrations (default) * - `'error'` - Throw an error and prevent the new registration * - `'replace'` - Unregister the existing registration and register the new one * - `'allow'` - Allow multiple registrations without warning */ type ConflictBehavior = 'warn' | 'error' | 'replace' | 'allow'; //#endregion export { ConflictBehavior }; //# sourceMappingURL=manager.utils.d.cts.map