import React from 'react';
import { IVeltCommentDialogMoreReplyCount } from './VeltCommentDialogMoreReplyCount/VeltCommentDialogMoreReplyCount';
import { IVeltCommentDialogMoreReplyText } from './VeltCommentDialogMoreReplyText/VeltCommentDialogMoreReplyText';
import { IVeltWireframeCommonProps } from '../../../constants';
export interface IVeltCommentDialogMoreReplyProps extends IVeltWireframeCommonProps {
}
export interface IVeltCommentDialogMoreReply extends React.FC<IVeltCommentDialogMoreReplyProps> {
    Count: IVeltCommentDialogMoreReplyCount;
    Text: IVeltCommentDialogMoreReplyText;
}
declare const VeltCommentDialogMoreReply: IVeltCommentDialogMoreReply;
export default VeltCommentDialogMoreReply;
