import { WithTimestamps } from '@n8n/db';
import type { ObservationScopeKind } from './agent-observation.entity';
export declare class AgentObservationLockEntity extends WithTimestamps {
scopeKind: ObservationScopeKind;
scopeId: string;
holderId: string;
heldUntil: Date;
}