/**
 * Health & Wellness Issue Events (Negative)
 * Health-related negative events and wellness setbacks
 *
 * NOTE: Some health events exist in health/events.ts:
 * - injuryFromAccident, chronicPain, dentalEmergency, seriousIllness
 *
 * Events in this file:
 * - weightGain: Significant weight gain (ages 16-100)
 * - sleepDeprivation: Extended period of poor sleep (ages 14-100)
 * - addictionProblem: Developing unhealthy dependency (ages 16-100) - questionEvent
 */
import { type EventResult } from '../base';
import type { Player } from '../../models/Player';
/**
 * Significant weight gain affecting comfort and self-image (ages 16-100)
 */
export declare function weightGain(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Extended period of poor sleep affecting everything (ages 14-100)
 */
export declare function sleepDeprivation(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Developing an unhealthy dependency affecting life (ages 16-100) - questionEvent
 */
export declare function addictionProblem(player: Player, type?: 'message' | 'question' | 'answer', response?: {
    option: string;
}): EventResult;
//# sourceMappingURL=health.d.ts.map