import { CompanyDetailWithHealthMetric, CompanyHealthMetricViewSelector, ID, VerticalProductServices } from '@zeniai/client-epic-state'; import { CockpitNoteData } from '../../../commentsAndNotes/utils/CollaborationTypes'; import { AllHealthMonitorTabKeys } from './healthMonitorHeaderItemsData'; export interface Props { companyNameSticky: boolean; companyView: CompanyDetailWithHealthMetric; healthView: CompanyHealthMetricViewSelector; totalHeight: number; addThreadRequestThreadId?: ID; onRowClick: (companyId: ID) => void; setAddThreadRequestThreadId: (addThreadRequestThreadId?: ID) => void; setElementRef: (companyId: ID, columnKey: AllHealthMonitorTabKeys, ref: HTMLElement | null) => void; setNoteData: (noteData: CockpitNoteData) => void; } declare function HealthListRow({ companyView, healthView, companyNameSticky, totalHeight, addThreadRequestThreadId, setNoteData, setElementRef, setAddThreadRequestThreadId, onRowClick, }: Readonly): import("react/jsx-runtime").JSX.Element; export declare const ProductServices: ({ productVerticals, testIdSuffix, }: { productVerticals: VerticalProductServices[]; testIdSuffix?: string; }) => import("react/jsx-runtime").JSX.Element; export default HealthListRow;