import { FC, RefObject } from 'react'; type PauseButtonProps = { testId?: string; className?: string; isPaused?: boolean; pauseAriaLabel?: string; resumeAriaLabel?: string; ariaControls?: string; onPause?: () => void; onResume?: () => void; buttonRef?: RefObject; }; declare const PauseButton: FC; export default PauseButton;