import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltRecorderPlayerAudioToggleWireframe } from '../VeltRecorderPlayerAudioToggleWireframe/VeltRecorderPlayerAudioToggleWireframe';
import { IVeltRecorderPlayerAudioWaveformWireframe } from '../VeltRecorderPlayerAudioWaveformWireframe/VeltRecorderPlayerAudioWaveformWireframe';
import { IVeltRecorderPlayerAudioWireframe } from '../VeltRecorderPlayerAudioWireframe/VeltRecorderPlayerAudioWireframe';
import { IVeltRecorderPlayerCopyLinkWireframe } from '../VeltRecorderPlayerCopyLinkWireframe/VeltRecorderPlayerCopyLinkWireframe';
import { IVeltRecorderPlayerDeleteWireframe } from '../VeltRecorderPlayerDeleteWireframe/VeltRecorderPlayerDeleteWireframe';
import { IVeltRecorderPlayerNameWireframe } from '../VeltRecorderPlayerNameWireframe/VeltRecorderPlayerNameWireframe';
import { IVeltRecorderPlayerSubtitlesButtonWireframe } from '../VeltRecorderPlayerSubtitlesButtonWireframe/VeltRecorderPlayerSubtitlesButtonWireframe';
import { IVeltRecorderPlayerSubtitlesWireframe } from '../VeltRecorderPlayerSubtitlesWireframe/VeltRecorderPlayerSubtitlesWireframe';
import { IVeltRecorderPlayerTimeWireframe } from '../VeltRecorderPlayerTimeWireframe/VeltRecorderPlayerTimeWireframe';
import { IVeltRecorderPlayerTranscriptionWireframe } from '../VeltRecorderPlayerTranscriptionWireframe/VeltRecorderPlayerTranscriptionWireframe';
import { IVeltRecorderPlayerAvatarWireframe } from '../VeltRecorderPlayerAvatarWireframe/VeltRecorderPlayerAvatarWireframe';
export interface IVeltRecorderPlayerAudioContainerWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecorderPlayerAudioContainerWireframe extends React.FC<IVeltRecorderPlayerAudioContainerWireframeProps> {
    AudioToggle: IVeltRecorderPlayerAudioToggleWireframe;
    Time: IVeltRecorderPlayerTimeWireframe;
    Audio: IVeltRecorderPlayerAudioWireframe;
    Subtitles: IVeltRecorderPlayerSubtitlesWireframe;
    Name: IVeltRecorderPlayerNameWireframe;
    SubtitlesButton: IVeltRecorderPlayerSubtitlesButtonWireframe;
    Transcription: IVeltRecorderPlayerTranscriptionWireframe;
    CopyLink: IVeltRecorderPlayerCopyLinkWireframe;
    Delete: IVeltRecorderPlayerDeleteWireframe;
    AudioWaveform: IVeltRecorderPlayerAudioWaveformWireframe;
    Avatar: IVeltRecorderPlayerAvatarWireframe;
}
declare const VeltRecorderPlayerAudioContainerWireframe: IVeltRecorderPlayerAudioContainerWireframe;
export default VeltRecorderPlayerAudioContainerWireframe;
