import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltRecorderControlPanelActionBarWireframe } from '../VeltRecorderControlPanelActionBarWireframe/VeltRecorderControlPanelActionBarWireframe';
import { IVeltRecorderControlPanelVideoWireframe } from '../VeltRecorderControlPanelVideoWireframe/VeltRecorderControlPanelVideoWireframe';
import { IVeltRecorderControlPanelLoadingWireframe } from '../VeltRecorderControlPanelLoadingWireframe/VeltRecorderControlPanelLoadingWireframe';
import { IVeltRecorderControlPanelScreenMiniContainerWireframe } from '../VeltRecorderControlPanelScreenMiniContainerWireframe/VeltRecorderControlPanelScreenMiniContainerWireframe';
import { IVeltRecorderControlPanelScreenWireframe } from '../VeltRecorderControlPanelScreenWireframe/VeltRecorderControlPanelScreenWireframe';
export interface IVeltRecorderControlPanelThreadModeWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecorderControlPanelThreadModeWireframe extends React.FC<IVeltRecorderControlPanelThreadModeWireframeProps> {
    Video: IVeltRecorderControlPanelVideoWireframe;
    Screen: IVeltRecorderControlPanelScreenWireframe;
    Loading: IVeltRecorderControlPanelLoadingWireframe;
    ActionBar: IVeltRecorderControlPanelActionBarWireframe;
    ScreenMiniContainer: IVeltRecorderControlPanelScreenMiniContainerWireframe;
}
declare const VeltRecorderControlPanelThreadModeWireframe: IVeltRecorderControlPanelThreadModeWireframe;
export default VeltRecorderControlPanelThreadModeWireframe;
