import type { CronDTO } from '../../api/dto/crons.js'; import type { SourceError, ViewCore } from '../view/contract.js'; import { scheduledItems, type InspectorSection } from './model.js'; export interface InspectorState { target: string; section: InspectorSection; dossier: { data: Record | null; error: SourceError | null; fetchedAt: number; }; schedule: { data: CronDTO[] | null; error: SourceError | null; fetchedAt: number; }; selectedCronId: string | null; expanded: boolean; pendingCancel: string | null; scroll: Record; } export declare const inspectorCore: ViewCore; export { scheduledItems };