/**
 * Childhood Setback Events
 * Negative events and minor disappointments for young children (ages 2-18)
 *
 * Events:
 * - lostFavoriteToy: Lost favorite toy causing sadness
 * - notInvitedToParty: Feeling excluded from a birthday party
 * - scolded: Getting in trouble with parents
 * - lostGame: Losing a game and playing poorly
 * - friendMovedAway: Best friend moving to another city
 */
import { type EventResult } from '../base';
import type { Player } from '../../models/Player';
/**
 * Lost favorite toy (ages 2-8)
 */
export declare function lostFavoriteToy(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Not invited to party (ages 5-12)
 */
export declare function notInvitedToParty(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Scolded by parents (ages 3-12)
 */
export declare function scolded(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Lost a game (ages 5-15)
 */
export declare function lostGame(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Friend moved away (ages 5-18)
 */
export declare function friendMovedAway(player: Player, _type?: 'message' | 'question'): EventResult;
//# sourceMappingURL=setbacks.d.ts.map