import React from 'react';
import { IVeltWireframeCommonProps } from '../../../constants';
import { IVeltRecorderControlPanelActionBarWaveformWireframe } from './VeltRecorderControlPanelActionBarWaveformWireframe/VeltRecorderControlPanelActionBarWaveformWireframe';
import { IVeltRecorderControlPanelActionBarClearWireframe } from './VeltRecorderControlPanelActionBarClearWireframe/VeltRecorderControlPanelActionBarClearWireframe';
import { IVeltRecorderControlPanelActionBarStopWireframe } from './VeltRecorderControlPanelActionBarStopWireframe/VeltRecorderControlPanelActionBarStopWireframe';
import { IVeltRecorderControlPanelActionBarTimeWireframe } from './VeltRecorderControlPanelActionBarTimeWireframe/VeltRecorderControlPanelActionBarTimeWireframe';
import { IVeltRecorderControlPanelActionBarToggleWireframe } from './VeltRecorderControlPanelActionBarToggleWireframe/VeltRecorderControlPanelActionBarToggleWireframe';
import { IVeltRecorderControlPanelActionBarTypeIconWireframe } from './VeltRecorderControlPanelActionBarTypeIconWireframe/VeltRecorderControlPanelActionBarTypeIconWireframe';
import { IVeltRecorderControlPanelActionBarPipWireframe } from './VeltRecorderControlPanelActionBarPipWireframe/VeltRecorderControlPanelActionBarPipWireframe';
export interface IVeltRecorderControlPanelActionBarWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecorderControlPanelActionBarWireframe extends React.FC<IVeltRecorderControlPanelActionBarWireframeProps> {
    Clear: IVeltRecorderControlPanelActionBarClearWireframe;
    Stop: IVeltRecorderControlPanelActionBarStopWireframe;
    Time: IVeltRecorderControlPanelActionBarTimeWireframe;
    Toggle: IVeltRecorderControlPanelActionBarToggleWireframe;
    TypeIcon: IVeltRecorderControlPanelActionBarTypeIconWireframe;
    Waveform: IVeltRecorderControlPanelActionBarWaveformWireframe;
    Pip: IVeltRecorderControlPanelActionBarPipWireframe;
}
declare const VeltRecorderControlPanelActionBarWireframe: IVeltRecorderControlPanelActionBarWireframe;
export default VeltRecorderControlPanelActionBarWireframe;
