import React from 'react';
import { IVeltRecordingPreviewStepsDialogAudioWireframe } from './VeltRecordingPreviewStepsDialogAudioWireframe/VeltRecordingPreviewStepsDialogAudioWireframe';
import { IVeltRecordingPreviewStepsDialogVideoWireframe } from './VeltRecordingPreviewStepsDialogVideoWireframe/VeltRecordingPreviewStepsDialogVideoWireframe';
import { IVeltWireframeCommonProps } from '../../constants';
export interface IVeltRecordingPreviewStepsDialogWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecordingPreviewStepsDialogWireframe extends React.FC<IVeltRecordingPreviewStepsDialogWireframeProps> {
    Video: IVeltRecordingPreviewStepsDialogVideoWireframe;
    Audio: IVeltRecordingPreviewStepsDialogAudioWireframe;
}
declare const VeltRecordingPreviewStepsDialogWireframe: IVeltRecordingPreviewStepsDialogWireframe;
export default VeltRecordingPreviewStepsDialogWireframe;
