import type { ActivityDetail } from './types'; /** * Fetch enriched activity inputs from HotMesh's stream history. * Returns a lookup map keyed by `name:dimension` for merging into events. * Best-effort — returns empty map on failure. */ export declare function fetchActivityInputs(jobId: string, appId: string): Promise>>; /** * Fetch the structured ActivityDetail array from HotMesh export. * Returns undefined if enrichment fails or produces no results. */ export declare function fetchActivityDetails(jobId: string, appId: string): Promise;