import React from 'react';
import { IVeltRecorderPlayerExpandedControlsDeleteButtonWireframe } from './VeltRecorderPlayerExpandedControlsDeleteButtonWireframe/VeltRecorderPlayerExpandedControlsDeleteButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsProgressBarWireframe } from './VeltRecorderPlayerExpandedControlsProgressBarWireframe/VeltRecorderPlayerExpandedControlsProgressBarWireframe';
import { IVeltRecorderPlayerExpandedControlsSettingsButtonWireframe } from './VeltRecorderPlayerExpandedControlsSettingsButtonWireframe/VeltRecorderPlayerExpandedControlsSettingsButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsSubtitleButtonWireframe } from './VeltRecorderPlayerExpandedControlsSubtitleButtonWireframe/VeltRecorderPlayerExpandedControlsSubtitleButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsTimeWireframe } from './VeltRecorderPlayerExpandedControlsTimeWireframe/VeltRecorderPlayerExpandedControlsTimeWireframe';
import { IVeltRecorderPlayerExpandedControlsToggleButtonWireframe } from './VeltRecorderPlayerExpandedControlsToggleButtonWireframe/VeltRecorderPlayerExpandedControlsToggleButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsTranscriptionButtonWireframe } from './VeltRecorderPlayerExpandedControlsTranscriptionButtonWireframe/VeltRecorderPlayerExpandedControlsTranscriptionButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsVolumeButtonWireframe } from './VeltRecorderPlayerExpandedControlsVolumeButtonWireframe/VeltRecorderPlayerExpandedControlsVolumeButtonWireframe';
import { IVeltRecorderPlayerExpandedControlsCurrentTimeWireframe } from './VeltRecorderPlayerExpandedControlsCurrentTimeWireframe/VeltRecorderPlayerExpandedControlsCurrentTimeWireframe';
import { IVeltRecorderPlayerExpandedControlsTotalTimeWireframe } from './VeltRecorderPlayerExpandedControlsTotalTimeWireframe/VeltRecorderPlayerExpandedControlsTotalTimeWireframe';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltRecorderPlayerExpandedControlsWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecorderPlayerExpandedControlsWireframe extends React.FC<IVeltRecorderPlayerExpandedControlsWireframeProps> {
    DeleteButton: IVeltRecorderPlayerExpandedControlsDeleteButtonWireframe;
    ProgressBar: IVeltRecorderPlayerExpandedControlsProgressBarWireframe;
    SettingsButton: IVeltRecorderPlayerExpandedControlsSettingsButtonWireframe;
    SubtitleButton: IVeltRecorderPlayerExpandedControlsSubtitleButtonWireframe;
    Time: IVeltRecorderPlayerExpandedControlsTimeWireframe;
    TranscriptionButton: IVeltRecorderPlayerExpandedControlsTranscriptionButtonWireframe;
    ToggleButton: IVeltRecorderPlayerExpandedControlsToggleButtonWireframe;
    VolumeButton: IVeltRecorderPlayerExpandedControlsVolumeButtonWireframe;
    CurrentTime: IVeltRecorderPlayerExpandedControlsCurrentTimeWireframe;
    TotalTime: IVeltRecorderPlayerExpandedControlsTotalTimeWireframe;
}
declare const VeltRecorderPlayerExpandedControlsWireframe: IVeltRecorderPlayerExpandedControlsWireframe;
export default VeltRecorderPlayerExpandedControlsWireframe;
