import React from 'react';
export interface IVeltCommentDialogMoreReplyProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
    index?: number | string;
    moreReplyTemplate?: any;
}
declare const VeltCommentDialogMoreReply: React.FC<IVeltCommentDialogMoreReplyProps>;
export default VeltCommentDialogMoreReply;
