/** * * Represents a time range within a time table, defined by a start and end hour. * / */ export declare class EmbeddedTimeTableHour { /** * * The start hour encoded as an integer. */ startHour: number; /** * * The end hour encoded as an integer. */ endHour: number; constructor(partial: Partial & Pick); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): EmbeddedTimeTableHour; }