/**
 * Additional Random Events - Ported from Python ws/events/random/
 * Events that were missing from the TypeScript codebase
 *
 * Events ported:
 * - perfectParkingSpot: Finding the perfect parking spot (positive)
 * - socialMediaCanceled: Being 'cancelled' on social media (negative)
 *
 * NOTE: The following events were already ported to other modules:
 * - accountHacked: server/src/events/negative/crisis.ts
 * - badRestaurantExperience: server/src/events/negative/dailyLife.ts
 * - carCrash: server/src/events/negative/crisis.ts
 * - lowAffinity: server/src/events/negative/social.ts
 * - ruinedClothes: server/src/events/negative/dailyLife.ts
 */
import { Player } from '../../models/Player';
import { type EventResult } from '../base';
/**
 * Perfect parking spot - finding an ideal spot right when arriving
 * Requires player to be able to drive, ages 16+
 * A small positive random event for drivers
 */
export declare function perfectParkingSpot(player: Player, _type?: 'message' | 'question'): EventResult;
/**
 * Social media canceled - being 'cancelled' on social media
 * Requires social media, ages 16-40, lower probability
 * A more severe social media negative event
 */
export declare function socialMediaCanceled(player: Player, _type?: 'message' | 'question'): EventResult;
//# sourceMappingURL=randomEvents.d.ts.map