import React from 'react'; declare type SongContextProps = { isPlaying: boolean; }; export declare const SongContext: React.Context; export declare type SongProps = { isPlaying?: boolean; bpm?: number; swing?: number; subdivision?: string; swingSubdivision?: string; volume?: number; isMuted?: boolean; children?: React.ReactNode; }; declare const Song: React.FC; export default Song;