export interface Log {
    type: string;
}
export declare const LOG_PHASE_TRANSITION: string;
export declare type PhaseType = 'day' | 'night';
export interface LogPhaseTransition extends Log {
    day: number;
    phase: PhaseType;
}
export declare function initLogPhaseTransition(day: number, phase: PhaseType): LogPhaseTransition;
