import type { AgentRunHistoryEntry, AgentScheduleData } from '../types.js'; export interface Props { /** All schedules */ schedules: AgentScheduleData[]; /** Recent run history */ recentHistory?: AgentRunHistoryEntry[]; /** Loading state */ loading?: boolean; /** Callbacks */ onScheduleClick?: (schedule: AgentScheduleData) => void; onEnable?: (schedule: AgentScheduleData) => void; onDisable?: (schedule: AgentScheduleData) => void; onDelete?: (schedule: AgentScheduleData) => void; onRunNow?: (schedule: AgentScheduleData) => void; onCreateSchedule?: () => void; onHistoryEntryClick?: (entry: AgentRunHistoryEntry) => void; } declare const AgentDashboard: import("svelte").Component; type AgentDashboard = ReturnType; export default AgentDashboard; //# sourceMappingURL=AgentDashboard.svelte.d.ts.map