import { ScheduledScreen } from "../types"; export type ScheduleState = { schedule: Array; current?: ScheduledScreen; error?: string; isBusy: boolean; }; export declare const schedule: ScheduleState;