/**
 * Childhood Activity Events
 * Learning activities for young children (ages 2-12)
 *
 * Events:
 * - learnedBike: Learning to ride a bike
 * - learnedSwim: Learning to swim
 * - childhoodActivity: General childhood activity selection
 * - learnInstrument: Learning a musical instrument
 * - playDate: Play date with another child
 */
import { type EventResult } from '../base.js';
import type { Player } from '../../models/Player.js';
/**
 * Learning to ride a bike (ages 2-4 years / 720-1460 days)
 */
export declare function learnedBike(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Learning to swim (ages 4-6 years / 1460-2190 days)
 */
export declare function learnedSwim(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * General childhood activity selection (ages 8-12)
 */
export declare function childhoodActivity(player: Player, type?: 'message' | 'question' | 'answer', response?: {
    option: string;
}): EventResult;
/**
 * Learning a musical instrument (ages 10-17)
 */
export declare function learnInstrument(player: Player, type?: 'message' | 'question' | 'answer', response?: {
    option: string;
}): EventResult;
/**
 * Play date with another child (ages 4-7)
 */
export declare function playDate(player: Player, type?: 'message' | 'question' | 'answer', response?: {
    option: string;
}): EventResult;
//# sourceMappingURL=activities.d.ts.map