export type HapticFeedbackType = "light" | "medium" | "heavy" | "selection" | "success" | "warning" | "error"; /** * Hook for providing haptic feedback on user interactions * Uses the Vibration API when available (mobile devices) * Falls back to no-op on unsupported devices */ declare const useHapticFeedback: () => { isSupported: boolean; trigger: (type?: HapticFeedbackType) => void; selectionChanged: () => void; impactOccurred: (style?: "light" | "medium" | "heavy") => void; notificationOccurred: (type?: "success" | "warning" | "error") => void; }; export default useHapticFeedback;