import React from 'react';
import { IVeltRecorderPlayerExpandedControlsWireframe } from './VeltRecorderPlayerExpandedControlsWireframe/VeltRecorderPlayerExpandedControlsWireframe';
import { IVeltRecorderPlayerExpandedCopyLinkWireframe } from './VeltRecorderPlayerExpandedCopyLinkWireframe/VeltRecorderPlayerExpandedCopyLinkWireframe';
import { IVeltRecorderPlayerExpandedDisplayWireframe } from './VeltRecorderPlayerExpandedDisplayWireframe/VeltRecorderPlayerExpandedDisplayWireframe';
import { IVeltRecorderPlayerExpandedMinimizeButtonWireframe } from './VeltRecorderPlayerExpandedMinimizeButtonWireframe/VeltRecorderPlayerExpandedMinimizeButtonWireframe';
import { IVeltRecorderPlayerExpandedPanelWireframe } from './VeltRecorderPlayerExpandedPanelWireframe/VeltRecorderPlayerExpandedPanelWireframe';
import { IVeltRecorderPlayerExpandedSubtitlesWireframe } from './VeltRecorderPlayerExpandedSubtitlesWireframe/VeltRecorderPlayerExpandedSubtitlesWireframe';
import { IVeltRecorderPlayerExpandedTranscriptionWireframe } from './VeltRecorderPlayerExpandedTranscriptionWireframe/VeltRecorderPlayerExpandedTranscriptionWireframe';
import { IVeltWireframeCommonProps } from '../../constants';
export interface IVeltRecorderPlayerExpandedWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecorderPlayerExpandedWireframe extends React.FC<IVeltRecorderPlayerExpandedWireframeProps> {
    Controls: IVeltRecorderPlayerExpandedControlsWireframe;
    CopyLink: IVeltRecorderPlayerExpandedCopyLinkWireframe;
    Display: IVeltRecorderPlayerExpandedDisplayWireframe;
    MinimizeButton: IVeltRecorderPlayerExpandedMinimizeButtonWireframe;
    Panel: IVeltRecorderPlayerExpandedPanelWireframe;
    Subtitles: IVeltRecorderPlayerExpandedSubtitlesWireframe;
    Transcription: IVeltRecorderPlayerExpandedTranscriptionWireframe;
}
declare const VeltRecorderPlayerExpandedWireframe: IVeltRecorderPlayerExpandedWireframe;
export default VeltRecorderPlayerExpandedWireframe;
