/**
 * Family Life Transitions Events
 * Events related to life transitions and changes in family dynamics
 *
 * Events:
 * - agingParent: Parent needs more help with daily tasks (ages 35-60)
 * - extendedFamily: Extended family member upset about being ignored (all ages)
 * - collegeMissHome: College freshman missing home (college yr 1)
 * - adultMissFriends: Working adult missing old friends (working adults)
 */
import { Player } from '../../models/Player.js';
import { type EventResult } from '../base.js';
/**
 * Aging Parent - Parent needs more help with daily tasks
 * Ages 35-60, requires at least one living parent
 */
export declare function agingParent(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Process aging parent answer
 */
export declare function agingParentAnswer(player: Player, response: {
    option: string;
}): void;
/**
 * Extended Family - Extended family member upset about being ignored
 * Triggers when familyLevel 2 relatives have affinity < -50
 */
export declare function extendedFamily(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Process extended family answer
 */
export declare function extendedFamilyAnswer(player: Player, response: {
    option: string;
    data?: string;
}): void;
/**
 * College Miss Home - College freshman missing home
 * Triggers for college yr 1 students with low social stat
 */
export declare function collegeMissHome(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Adult Miss Friends - Working adult missing old friends
 * Triggers for working adults, reminds them to reconnect with friends
 */
export declare function adultMissFriends(player: Player, _type?: 'message' | 'question'): EventResult;
//# sourceMappingURL=lifeTransitions.d.ts.map