import React from 'react'; import type { SoundContextType, SoundAsset, HapticFeedbackOptions } from './types'; interface SoundProviderProps { children: React.ReactNode; /** Initial sound assets to register */ initialSounds?: SoundAsset[]; /** Whether to enable audio mode on iOS */ enableAudioMode?: boolean; } export declare const SoundProvider: React.FC; /** * Hook to access the sound context */ export declare const useSound: () => SoundContextType; /** * Hook for haptic feedback */ export declare const useHaptics: () => { triggerHaptic: (options?: HapticFeedbackOptions) => Promise; }; export {};