import { Schedule } from './Schedule'; export declare enum ScheduleSelectType { NONE = "none", SELECTED = "selected" } export interface IScheduleItem { label: string; value: number; formatValue: string; selectType: ScheduleSelectType; disabled: boolean; } export interface IScheduleList { label: string; items: IScheduleItem[]; } export declare class SchedulePanel { private readonly root; constructor(root: Schedule); getScheduleList(): IScheduleList[]; private getFormatValue; } export declare function formatTime(time: number): string;