import { Construct } from 'constructs'; import { Component } from 'projen'; /** * Re-enable automatic AutoMerging of PRs if it gets disabled by sporadically failing a test in the merge queue * * If automerge gets disabled by a human, we leave it disabled. But if GitHub disables it for us, we re-enable it * and try again. */ export declare class RetryAutoMerge extends Component { constructor(scope: Construct); }