import { GameEventType } from './GameEvents'; import { PlayerEventType } from './ProcessableEvents'; interface EventPropertyAlias { alias: string; path: string; translation?: boolean; } type GameEvent = Partial>; type RewardableEvent = Record; type ScheduledEvent = Record; type PropertyEvent = Record; type PublicEvents = Record; export declare const EVENT_PUBLIC_DEFINITION: PublicEvents; export {};