import { type ProjectContext, type RunCorrelation } from '@opensip-cli/core'; /** Inputs for {@link assembleCorrelation}. */ export interface AssembleCorrelationInput { readonly runId: string; readonly tool: string; readonly parentCommand: string; readonly apiKey?: string; readonly noCloud?: boolean; readonly effectiveCloud: { readonly sync?: boolean; readonly endpoint?: string; } | undefined; readonly project: ProjectContext; readonly cwd: string; } /** Assemble the cloud-aware {@link RunCorrelation} bag and diagnostics facts. */ export declare function assembleCorrelation(input: AssembleCorrelationInput): { readonly correlation: RunCorrelation; readonly cloudActive: boolean; readonly traceId: string | undefined; }; //# sourceMappingURL=assemble-correlation.d.ts.map