/** * Confidence-weighted vote tally for multi-agent voting. * * This is plain vote counting across subagents of one process — not a * distributed consensus protocol. Each vote carries a confidence weight * in [0,1]; quorum passes when weighted approval exceeds half the total weight. */ export declare function weightedTally(votes: Array<{ agentId: string; vote: boolean; confidence: number; }>): { approved: number; rejected: number; weightedApproval: number; weightedRejection: number; quorum: boolean; }; //# sourceMappingURL=tally.d.ts.map