import { AudioContextInterface } from '../../types';

/**
 * 😣 should clean up the data structure in this context
 */
declare function AudioProvider({ children }: {
    children: React.ReactNode;
}): import("react/jsx-runtime").JSX.Element;
declare function useAudio(): AudioContextInterface;
export { AudioProvider, useAudio };
