interface UseAudioProps { src: string; } export declare function useAudio(props: UseAudioProps): { play: () => void; pause: () => void; }; export {};