import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltRecorderAllToolMenuAudioWireframe } from './VeltRecorderAllToolMenuAudioWireframe/VeltRecorderAllToolMenuAudioWireframe';
import { IVeltRecorderAllToolMenuVideoWireframe } from './VeltRecorderAllToolMenuVideoWireframe/VeltRecorderAllToolMenuVideoWireframe';
import { IVeltRecorderAllToolMenuScreenWireframe } from './VeltRecorderAllToolMenuScreenWireframe/VeltRecorderAllToolMenuScreenWireframe';
export interface IVeltRecorderAllToolMenuWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecorderAllToolMenuWireframe extends React.FC<IVeltRecorderAllToolMenuWireframeProps> {
    Video: IVeltRecorderAllToolMenuVideoWireframe;
    Audio: IVeltRecorderAllToolMenuAudioWireframe;
    Screen: IVeltRecorderAllToolMenuScreenWireframe;
}
declare const VeltRecorderAllToolMenuWireframe: IVeltRecorderAllToolMenuWireframe;
export default VeltRecorderAllToolMenuWireframe;
