import { Logger } from '@n8n/backend-common';
import { AgentExecutionService } from './agent-execution.service';
import { AgentExecutionRepository } from './repositories/agent-execution.repository';
export declare class AgentInterruptedExecutionSweeper {
    private readonly logger;
    private readonly executionRepository;
    private readonly executionService;
    static readonly LIVENESS_GRACE_MS: number;
    constructor(logger: Logger, executionRepository: AgentExecutionRepository, executionService: AgentExecutionService);
    sweep(): Promise<void>;
}
