import type { Manifold } from '../core/pipework.js'; export interface WithContextOptions { instance: Manifold; auth?: unknown; tenant?: string | null; requestId?: string; } export declare function withContext(options: WithContextOptions, fn: () => T): T; export declare function withJobContext(options: WithContextOptions, fn: () => T): T; //# sourceMappingURL=context.d.ts.map