import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltRecorderPlayerCopyLinkWireframe } from '../VeltRecorderPlayerCopyLinkWireframe/VeltRecorderPlayerCopyLinkWireframe';
import { IVeltRecorderPlayerDeleteWireframe } from '../VeltRecorderPlayerDeleteWireframe/VeltRecorderPlayerDeleteWireframe';
import { IVeltRecorderPlayerFullScreenButtonWireframe } from '../VeltRecorderPlayerFullScreenButtonWireframe/VeltRecorderPlayerFullScreenButtonWireframe';
import { IVeltRecorderPlayerNameWireframe } from '../VeltRecorderPlayerNameWireframe/VeltRecorderPlayerNameWireframe';
import { IVeltRecorderPlayerOverlayWireframe } from '../VeltRecorderPlayerOverlayWireframe/VeltRecorderPlayerOverlayWireframe';
import { IVeltRecorderPlayerPlayButtonWireframe } from '../VeltRecorderPlayerPlayButtonWireframe/VeltRecorderPlayerPlayButtonWireframe';
import { IVeltRecorderPlayerSubtitlesButtonWireframe } from '../VeltRecorderPlayerSubtitlesButtonWireframe/VeltRecorderPlayerSubtitlesButtonWireframe';
import { IVeltRecorderPlayerSubtitlesWireframe } from '../VeltRecorderPlayerSubtitlesWireframe/VeltRecorderPlayerSubtitlesWireframe';
import { IVeltRecorderPlayerTimelineWireframe } from '../VeltRecorderPlayerTimelineWireframe/VeltRecorderPlayerTimelineWireframe';
import { IVeltRecorderPlayerTimeWireframe } from '../VeltRecorderPlayerTimeWireframe/VeltRecorderPlayerTimeWireframe';
import { IVeltRecorderPlayerTranscriptionWireframe } from '../VeltRecorderPlayerTranscriptionWireframe/VeltRecorderPlayerTranscriptionWireframe';
import { IVeltRecorderPlayerVideoWireframe } from '../VeltRecorderPlayerVideoWireframe/VeltRecorderPlayerVideoWireframe';
import { IVeltRecorderPlayerAvatarWireframe } from '../VeltRecorderPlayerAvatarWireframe/VeltRecorderPlayerAvatarWireframe';
import { IVeltRecorderPlayerEditButtonWireframe } from '../VeltRecorderPlayerEditButtonWireframe/VeltRecorderPlayerEditButtonWireframe';
export interface IVeltRecorderPlayerVideoContainerWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecorderPlayerVideoContainerWireframe extends React.FC<IVeltRecorderPlayerVideoContainerWireframeProps> {
    Video: IVeltRecorderPlayerVideoWireframe;
    Timeline: IVeltRecorderPlayerTimelineWireframe;
    PlayButton: IVeltRecorderPlayerPlayButtonWireframe;
    EditButton: IVeltRecorderPlayerEditButtonWireframe;
    FullScreenButton: IVeltRecorderPlayerFullScreenButtonWireframe;
    Overlay: IVeltRecorderPlayerOverlayWireframe;
    Time: IVeltRecorderPlayerTimeWireframe;
    Subtitles: IVeltRecorderPlayerSubtitlesWireframe;
    Name: IVeltRecorderPlayerNameWireframe;
    SubtitlesButton: IVeltRecorderPlayerSubtitlesButtonWireframe;
    Transcription: IVeltRecorderPlayerTranscriptionWireframe;
    CopyLink: IVeltRecorderPlayerCopyLinkWireframe;
    Delete: IVeltRecorderPlayerDeleteWireframe;
    Avatar: IVeltRecorderPlayerAvatarWireframe;
}
declare const VeltRecorderPlayerVideoContainerWireframe: IVeltRecorderPlayerVideoContainerWireframe;
export default VeltRecorderPlayerVideoContainerWireframe;
