// Thin re-export — audio prefs storage now lives in `@djangocfg/ui-core/hooks`. // Existing direct consumers (`AudioToggle`) keep working through this wrapper. 'use client'; import { createAudioPrefsStore, type AudioPrefsState } from '@djangocfg/ui-core/hooks'; import type { ChatAudioEvent } from './types'; const STORAGE_KEY = 'djangocfg-chat-audio:prefs'; export type ChatAudioPrefsState = AudioPrefsState; export const useChatAudioPrefs = createAudioPrefsStore(STORAGE_KEY);