export type HealingInstructionType = 'PATCH' | 'ROLLBACK' | 'RETRY' | 'ESCALATE';
export interface HealingInstruction {
    type: HealingInstructionType;
    target: string;
    value?: any;
    reason?: string;
    confidence?: number;
}
export declare function validateInstruction(payload: any): payload is HealingInstruction;
