import type { TraceData } from '#types/trace.js'; export type { TraceData }; export interface TraceLocation { path: string; isRemote: boolean; } export interface TraceResult { data: TraceData; location: TraceLocation; } /** * Get trace data from workflow ID using the API * The API handles S3 fetching - CLI only needs to read local files when necessary * @returns Both the trace data and the location it was fetched from */ export declare function getTrace(workflowId: string): Promise;