/** * @political-science/government-agents * * Government modeling framework for political science research. * * Research Foundation: * - V-Dem v14 (Varieties of Democracy): 531 indicators, 202 countries * - WGI 2024 (Worldwide Governance Indicators): State capacity metrics * - Laver (2020): Agent-based modeling in political decision making * - Manifesto Project Database: Party policy positions * * @module @political-science/government-agents * @version 0.1.0 * @license MIT */ export * from './core'; export * from './coalition'; export * from './policy'; export * from './elections'; export * from './data'; /** * Package version */ export declare const VERSION = "0.1.0"; /** * Research citations used throughout this package */ export declare const RESEARCH_CITATIONS: { vdem: string; wgi: string; laver: string; manifesto: string; ipu: string; };