import { Bool, ComponentBase } from "./Component"; export declare class Daytime extends ComponentBase { static SCHEMA: { is_daytime: typeof Bool; current_time: NumberConstructor; start_hour: NumberConstructor; end_hour: NumberConstructor; duration: NumberConstructor; start_delay: NumberConstructor; }; isDaytime?: boolean; currentTime?: number; startHour?: number; endHour?: number; startDelay?: number; is_daytime: boolean; current_time: number; start_hour: number; end_hour: number; duration: number; start_delay: number; }