import React from 'react';
import { IVeltWireframeCommonProps } from '../../constants';
import { IVeltConfirmDialogTitleWireframeProps } from './VeltConfirmDialogTitleWireframe/VeltConfirmDialogTitleWireframe';
import { IVeltConfirmDialogMessageWireframeProps } from './VeltConfirmDialogMessageWireframe/VeltConfirmDialogMessageWireframe';
import { IVeltConfirmDialogApproveButtonWireframeProps } from './VeltConfirmDialogApproveButtonWireframe/VeltConfirmDialogApproveButtonWireframe';
import { IVeltConfirmDialogRejectButtonWireframeProps } from './VeltConfirmDialogRejectButtonWireframe/VeltConfirmDialogRejectButtonWireframe';
export interface IVeltConfirmDialogWireframeProps extends IVeltWireframeCommonProps {
}
export interface IVeltConfirmDialogWireframe extends React.FC<IVeltConfirmDialogWireframeProps> {
    Title: React.FC<IVeltConfirmDialogTitleWireframeProps>;
    Message: React.FC<IVeltConfirmDialogMessageWireframeProps>;
    ApproveButton: React.FC<IVeltConfirmDialogApproveButtonWireframeProps>;
    RejectButton: React.FC<IVeltConfirmDialogRejectButtonWireframeProps>;
}
declare const VeltConfirmDialogWireframe: IVeltConfirmDialogWireframe;
export default VeltConfirmDialogWireframe;
