import React from 'react';
import { IVeltRecordingPreviewStepsDialogBottomPanelCloseWireframe } from './VeltRecordingPreviewStepsDialogBottomPanelCloseWireframe/VeltRecordingPreviewStepsDialogBottomPanelCloseWireframe';
import { IVeltRecordingPreviewStepsDialogBottomPanelCountdownWireframe } from './VeltRecordingPreviewStepsDialogBottomPanelCountdownWireframe/VeltRecordingPreviewStepsDialogBottomPanelCountdownWireframe';
import { IVeltRecordingPreviewStepsDialogBottomPanelIconWireframe } from './VeltRecordingPreviewStepsDialogBottomPanelIconWireframe/VeltRecordingPreviewStepsDialogBottomPanelIconWireframe';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltRecordingPreviewStepsDialogBottomPanelWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltRecordingPreviewStepsDialogBottomPanelWireframe extends React.FC<IVeltRecordingPreviewStepsDialogBottomPanelWireframeProps> {
    Icon: IVeltRecordingPreviewStepsDialogBottomPanelIconWireframe;
    Close: IVeltRecordingPreviewStepsDialogBottomPanelCloseWireframe;
    Countdown: IVeltRecordingPreviewStepsDialogBottomPanelCountdownWireframe;
}
declare const VeltRecordingPreviewStepsDialogBottomPanelWireframe: IVeltRecordingPreviewStepsDialogBottomPanelWireframe;
export default VeltRecordingPreviewStepsDialogBottomPanelWireframe;
