/**
 * Family Conflict Events
 * Negative events related to family relationships and conflicts
 *
 * Events:
 * - parentDivorce: Parents getting divorced (ages 5-18)
 * - siblingRivalry: Parents favoring sibling (ages 5-25)
 * - familyEstrangement: Major falling out with family (ages 18-100)
 * - parentIllness: Parent diagnosed with serious illness (ages 20-100)
 * - familyDebt: Family member needs financial help (ages 18-100)
 * - inheritanceDispute: Family fighting over inheritance (ages 30-100)
 */
import { Player } from '../../models/Player.js';
import { type EventResult } from '../base.js';
/**
 * Parents getting divorced (ages 5-18)
 * Major negative life event that impacts happiness and family relationships
 */
export declare function parentDivorce(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Parents clearly favoring sibling (ages 5-25)
 * Causes resentment toward parents and sibling
 */
export declare function siblingRivalry(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Major falling out with family members (ages 18-100)
 * Results in estrangement from entire family
 */
export declare function familyEstrangement(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Parent diagnosed with serious illness (ages 20-100)
 * Emotional toll on player when parent becomes ill
 */
export declare function parentIllness(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Family member needs financial help (ages 18-100)
 * Family emergency puts strain on player's finances
 */
export declare function familyDebt(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Family fighting over inheritance (ages 30-100)
 * Greed tears family apart
 */
export declare function inheritanceDispute(player: Player, _type?: 'message' | 'question'): EventResult;
//# sourceMappingURL=conflicts.d.ts.map