import React from 'react'; declare type ControlsProps = { transcriptUrl?: string; transcriptId: string; exitFullScreen?: () => void; close?: () => void; disableKeyboard: boolean; }; declare const Controls: React.FC; export default Controls;