import { AuditReportRule, AuditRuleGroup } from '@zeniai/client-epic-state'; export interface Props { commentsText: string; isControllerOrReviewer: boolean; rule: AuditReportRule; ruleGroup: AuditRuleGroup; triggerComponent: React.ReactNode; isDisabled?: boolean; handleReasonAuditRule: (auditRuleId: string, auditRuleGroupId: string, reasonToPass: string, reasonStatus: string) => void; setCommentsText: (value: string) => void; } declare const Comments: ({ rule, commentsText, ruleGroup, isControllerOrReviewer, triggerComponent, setCommentsText, handleReasonAuditRule, }: Readonly) => import("react/jsx-runtime").JSX.Element; export default Comments;