import { ReactNode } from 'react'; import { type GlassOpticsPreset } from '../../shared/glassOptics'; type Props = { title?: string; artist?: string; imageUrl?: string; variant?: 'default' | 'large' | 'inline'; onPlay?: VoidFunction; onFastForward?: VoidFunction; className?: string; children?: ReactNode; glassPreset?: GlassOpticsPreset; clarity?: number; frost?: number; bgBlur?: number; dispersion?: number; depth?: number; }; export declare const GlassMusicPlayer: ({ title, artist, imageUrl, variant, onPlay, onFastForward, className, children, glassPreset, clarity, frost, bgBlur, dispersion, depth, }: Props) => import("react/jsx-runtime").JSX.Element; export {};