import { PlayerProps } from ".."; export interface AudioPlayerProps extends PlayerProps { url: string; className?: string; } export interface AudioPlayerRef { play: () => void; pause: () => void; stop: () => void; }