import { ReportID } from '@zeniai/client-epic-state'; import { CollaborationEntityType, ThreadMetadata } from './CollaborationTypes'; export type ReportThreadHostPage = "reports" | "forecast_pandl" | "opex" | "revenue" | "net_burn"; export declare const getSameReportPageReportIds: (page: ReportThreadHostPage) => readonly ReportID[]; export declare const getReportThreadHostPage: (reportId: ReportID) => ReportThreadHostPage | undefined; export declare const getPageLevelEntityType: (page: ReportThreadHostPage | undefined) => CollaborationEntityType; export declare const isSameReportPageThread: (metadata: ThreadMetadata | undefined, page: ReportThreadHostPage) => boolean;