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