/// import "./styles/styles.css"; interface ReactPlayerPropsTypes { src: string; artist?: string; artistImage?: string; } declare const ReactPlayer: ({ src, artistImage, artist, }: ReactPlayerPropsTypes) => JSX.Element; export default ReactPlayer;