export interface UIStateHook { state: T; toggle: () => void; setState: (value: T) => void; } /** * Optimized UI state hook with better type safety and performance */ export declare const useUIState: (initialState: T) => UIStateHook; //# sourceMappingURL=useUIState.d.ts.map