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 { Title: React.FC; Message: React.FC; ApproveButton: React.FC; RejectButton: React.FC; } declare const VeltConfirmDialogWireframe: IVeltConfirmDialogWireframe; export default VeltConfirmDialogWireframe;