type Outcome = 'SUCCESS' | 'ROLLBACK' | 'ESCALATE';
interface ReinforcementRecord {
    signalType: string;
    agentId: string;
    outcome: Outcome;
}
export declare function reinforce(record: ReinforcementRecord): void;
export declare function getAgentConfidence(signalType: string, agentId: string): number;
export {};
