// Компоненты export * from "./components/keyboard-shortcuts-modal" export * from "./components/shortcut-handler" // Константы export * from "./constants/default-shortcuts" // Хуки export * from "./hooks/use-panel-shortcuts" // Пресеты - экспортируем функцию создания и типы export { createPresets } from "./presets" export type { PresetType, Shortcut as ShortcutPreset } from "./presets/types" export * from "./services/shortcuts-persistence" export * from "./services/shortcuts-provider" // Сервисы export * from "./services/shortcuts-registry" export * from "./services/tauri-global-shortcuts"