import { OperationalError } from 'n8n-workflow';
export declare class DuplicateExecutionError extends OperationalError {
    readonly deduplicationKey: string;
    constructor(deduplicationKey: string, cause?: Error);
}
