import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltRecorderControlPanelFloatingModeContainerWireframe } from './VeltRecorderControlPanelFloatingModeContainerWireframe/VeltRecorderControlPanelFloatingModeContainerWireframe';
import { IVeltRecorderControlPanelFloatingModeWaveformWireframe } from './VeltRecorderControlPanelFloatingModeWaveformWireframe/VeltRecorderControlPanelFloatingModeWaveformWireframe';
import { IVeltRecorderControlPanelActionBarWireframe } from '../VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarWireframe';
import { IVeltRecorderControlPanelCollapsedButtonWireframe } from '../VeltRecorderControlPanelCollapsedButtonWireframe/VeltRecorderControlPanelCollapsedButtonWireframe';
import { IVeltRecorderControlPanelLoadingWireframe } from '../VeltRecorderControlPanelLoadingWireframe/VeltRecorderControlPanelLoadingWireframe';
import { IVeltRecorderControlPanelPausedWireframe } from '../VeltRecorderControlPanelPausedWireframe/VeltRecorderControlPanelPausedWireframe';
import { IVeltRecorderControlPanelVideoWireframe } from '../VeltRecorderControlPanelVideoWireframe/VeltRecorderControlPanelVideoWireframe';
import { IVeltRecorderControlPanelScreenWireframe } from '../VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe';
import { IVeltRecorderControlPanelScreenMiniContainerWireframe } from '../VeltRecorderControlPanelScreenMiniContainerWireframe/VeltRecorderControlPanelScreenMiniContainerWireframe';
export interface IVeltRecorderControlPanelFloatingModeWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecorderControlPanelFloatingModeWireframe extends React.FC<IVeltRecorderControlPanelFloatingModeWireframeProps> {
    Container: IVeltRecorderControlPanelFloatingModeContainerWireframe;
    ScreenVideo: IVeltRecorderControlPanelScreenMiniContainerWireframe;
    ScreenMiniContainer: IVeltRecorderControlPanelScreenMiniContainerWireframe;
    Waveform: IVeltRecorderControlPanelFloatingModeWaveformWireframe;
    Video: IVeltRecorderControlPanelVideoWireframe;
    Screen: IVeltRecorderControlPanelScreenWireframe;
    CollapsedButton: IVeltRecorderControlPanelCollapsedButtonWireframe;
    Paused: IVeltRecorderControlPanelPausedWireframe;
    Loading: IVeltRecorderControlPanelLoadingWireframe;
    ActionBar: IVeltRecorderControlPanelActionBarWireframe;
}
declare const VeltRecorderControlPanelFloatingModeWireframe: IVeltRecorderControlPanelFloatingModeWireframe;
export default VeltRecorderControlPanelFloatingModeWireframe;
