import { IconButtonProps } from '@mui/material'; import { FC } from 'react'; export interface CenteredPlayButtonProps { classNames?: string; iconButtonProps?: IconButtonProps; } /** * Component shown before a media has started * @category React Component * @category UI Controls */ export declare const CenteredPlayButton: FC;