/** * ScheduleView Component * * Schedule management dashboard: configuration, external-scheduler setup, * notification settings, and check history. * * Phase 4.1 (honest scheduling): the daemon control panel was removed — the * "daemon" it started was a setTimeout simulation that never ran anything. * Scheduling is external: this view surfaces the generated * cron/systemd/launchd/schtasks entries (which invoke * `pluginator auto-update --json`) plus the persisted config and the * last-run stamp recorded by ScheduleService. * * @since v1.63.0 */ import type React from 'react'; import type { Tier } from '../../core/types/auth.js'; export interface ScheduleViewProps { /** Whether this view is active */ isActive: boolean; /** User's current tier */ tier?: Tier; /** Callback to close the view */ onClose?: () => void; } export declare function ScheduleView({ isActive, tier, onClose }: ScheduleViewProps): React.ReactElement; //# sourceMappingURL=ScheduleView.d.ts.map