import type { GovernanceExperienceSnapshot } from './governance-experience-contract.js'; /** Bounded list contract (SPEC ยง15): at most 10 items per category / issue group list. */ export declare const GOVERNANCE_EXPERIENCE_ITEMS_LIMIT = 10; export declare const GOVERNANCE_EXPERIENCE_ISSUE_GROUPS_LIMIT = 10; /** * Derives the workspace-level governance experience snapshot from validated * inputs. Pure: no clock, no I/O, deterministic for identical inputs. * Throws `invalid_governance_experience_inputs` / `invalid_governance_experience_snapshot`. */ export declare function deriveGovernanceExperienceSnapshot(input: unknown): GovernanceExperienceSnapshot; //# sourceMappingURL=governance-experience.d.ts.map