import { HapticImpactStyle, HapticNotificationType } from '../types'; export interface UseHapticsResult { impact: (style?: HapticImpactStyle) => void; notify: (type: HapticNotificationType) => void; /** Lightest tap — toggles, segments, picker/tab changes (spec §5.4). */ selection: () => void; } export declare function useHaptics(): UseHapticsResult; //# sourceMappingURL=useHaptics.d.ts.map