/**
 * @medicine-wheel/community-review — Accountability
 *
 * Review functions that assess artifacts against Wilson's three R's,
 * OCAP® principles, and relational health.
 */
import type { ReviewCircle, Reviewer, WilsonCheck } from './types.js';
/**
 * Determine who a reviewer is accountable to.
 * Returns the accountability chain for a given reviewer.
 */
export declare function reviewerAccountability(reviewer: Reviewer): {
    reviewerId: string;
    role: string;
    accountableTo: string[];
    direction?: string;
    accountabilityStatement: string;
};
/**
 * Check an artifact (via its review circle) against Wilson's three R's:
 * Respect, Reciprocity, Responsibility.
 */
export declare function reviewAgainstWilson(circle: ReviewCircle): {
    wilsonCheck: WilsonCheck;
    score: number;
    observations: string[];
};
/**
 * Check an artifact's review against OCAP® principles:
 * Ownership, Control, Access, Possession.
 */
export declare function reviewAgainstOcap(circle: ReviewCircle): {
    compliant: boolean;
    issues: string[];
};
/**
 * Assess the relational health of the review circle itself.
 * A healthy circle has diverse perspectives, active participation,
 * and explicit accountability.
 */
export declare function relationalHealthReview(circle: ReviewCircle): {
    healthy: boolean;
    score: number;
    dimensions: {
        diversity: number;
        participation: number;
        accountability: number;
        elderPresence: number;
    };
    recommendations: string[];
};
//# sourceMappingURL=accountability.d.ts.map