import React from 'react'; import type { SoundContextType, SoundAsset, HapticFeedbackOptions } from './types'; interface MockSoundProviderProps { children: React.ReactNode; /** Initial sound assets to register */ initialSounds?: SoundAsset[]; /** Whether to log sound actions to console */ enableLogging?: boolean; } export declare const MockSoundProvider: React.FC; /** * Hook to access the mock sound context */ export declare const useMockSound: () => SoundContextType; /** * Mock haptic feedback hook */ export declare const useMockHaptics: () => { triggerHaptic: (options?: HapticFeedbackOptions) => Promise; }; export {};