import { ID } from '@zeniai/client-epic-state'; import { ThreadMetadata } from '../../commentsAndNotes/utils/CollaborationTypes'; /** * Unresolved comment threads for one transaction. * * `includeRowThreads` also counts Expense Automation row threads (shared * pool with the detail page). Leave it off where row threads are already * counted separately (the EA row hook). */ export declare function useTransactionItemThreads(transactionId: ID, includeRowThreads?: boolean): { unResolvedThreads: import('@liveblocks/client').ThreadData[]; isThreadsLoading: boolean; };