export interface MutationContext { actorId: string; actorType: 'human' | 'agent' | 'service'; correlationId: string; causationId?: string; } export interface BiomeMutationRequestContext { orgId: string; projectId?: string; actorId: string; actorType: string; correlationId: string; causationId?: string; } export declare function buildMutationContext(ctx: BiomeMutationRequestContext): MutationContext; //# sourceMappingURL=mutation-context.d.ts.map