import { ID } from '@zeniai/client-epic-state'; import { ThreadMetadata } from '../../../../commentsAndNotes/utils/CollaborationTypes'; import { WhatForSectionLocalData } from '../EditableBillDetailPageHelpers'; export interface ReadOnlyWhatForSectionProps { billId: ID | undefined; canComment: boolean; companyId: string; companyName: string; labelWidth: number; roomId: ID; threadsFilter: Partial; whatForSection: WhatForSectionLocalData; } export declare function ReadOnlyWhatForSection({ billId, canComment, companyId, companyName, labelWidth, roomId, threadsFilter, whatForSection, }: Readonly): JSX.Element;