import React from 'react';
export interface IVeltCommentDialogToggleReplyProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
    annotationId?: string;
    defaultCondition?: boolean;
    inlineCommentSectionMode?: boolean;
}
declare const VeltCommentDialogToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
export default VeltCommentDialogToggleReply;
