export interface HealingSessionInput {
    stateSnapshot: Record<string, any>;
    signal: string;
    context?: Record<string, any>;
}
export interface HealingInstruction {
    action: 'ROLLBACK' | 'RETRY' | 'PATCH' | 'ESCALATE' | 'IGNORE';
    payload?: Record<string, any>;
    reason?: string;
}
export declare function runHealingEngine(input: HealingSessionInput): Promise<HealingInstruction[]>;
export default runHealingEngine;
