import { type IWorldManager, type IWorldTime } from "../common";
import type { WeatherTypeEnum } from "../../../shared/common/world";
export declare class CCMPWorldManager implements IWorldManager {
    get time(): IWorldTime;
    get weather(): WeatherTypeEnum;
    setTimeHour(value: number): void;
    setTimeMinute(value: number): void;
    setTimeSecond(value: number): void;
    setWeather(value: WeatherTypeEnum): void;
}
