export interface PensionCountryTemplate {
  country_code: string;
  country_name: string;
  emoji: string;
  currency: string;
  currency_symbol: string;
  region: string;
  description: string;
  pools: string[];
}

export interface PensionSetupStatus {
  is_configured: boolean;
  pool_count: number;
  config_count: number;
}
