import type { SessionId, TurnId } from '../types/ids/index.js'; import type { ProbeContext } from '../types/probe/index.js'; export interface ProbeContextInput { readonly sessionId?: SessionId; readonly turnId?: TurnId; readonly isReplay?: boolean; } export declare function buildProbeContext(input?: ProbeContextInput): ProbeContext; //# sourceMappingURL=context.d.ts.map