import { AudioPlayerStateProviderProps, DEFAULT_INTERFACE_GRID_BOUND } from '../Context'; export interface AudioPlayerProps extends AudioPlayerStateProviderProps { children?: React.ReactNode; audioRef?: React.MutableRefObject; /** * Forces the player to render in a specific color scheme, overriding the * operating system `prefers-color-scheme` setting. When omitted, the * player follows the OS preference. */ colorScheme?: "light" | "dark"; } export declare const AudioPlayer: ({ audioRef, children, ...restProps }: AudioPlayerProps) => import("react/jsx-runtime").JSX.Element;