/**
 * Childhood Milestone Events
 * Major developmental milestones for young children (ages 0-5)
 *
 * Events:
 * - learnedWalk: Learning to walk (9-24 months)
 * - learningColors: Learning to identify colors (ages 2-3)
 * - lostFirstTooth: Losing first baby tooth (ages 6-8)
 * - lostLastTooth: Losing last baby tooth (ages 10-12)
 * - childLearnedWalk: Player's child learns to walk
 */
import { type EventResult } from '../base';
import type { Player } from '../../models/Player';
/**
 * Learning to walk (9-24 months / 270-720 days)
 */
export declare function learnedWalk(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Losing first baby tooth (ages 6-8)
 */
export declare function lostFirstTooth(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Losing last baby tooth (ages 10-12)
 */
export declare function lostLastTooth(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Learning to identify colors (ages 2-3)
 */
export declare function learningColors(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Player's child learns to walk
 */
export declare function childLearnedWalk(player: Player, _type?: 'message' | 'question'): EventResult;
//# sourceMappingURL=milestones.d.ts.map