/**
 * School Negative Events
 * Negative events that occur during school years
 *
 * NOTE: Many school events already exist in education/schoolLife.ts and education/quickWins.ts
 * This file contains additional school-specific negative events not covered elsewhere.
 *
 * Events:
 * - bullying: Being bullied by other students (ages 6-18, student) - questionEvent with choices
 */
import { type EventResult } from '../base';
import type { Player } from '../../models/Player';
/**
 * Being bullied by other students (ages 6-18, student)
 * This is a question event that allows the player to choose how to respond
 */
export declare function bullying(player: Player, type?: 'message' | 'question' | 'answer', response?: {
    option: string;
}): EventResult;
//# sourceMappingURL=school.d.ts.map