import type { Snippet } from 'svelte'; import type { AgentScheduleData } from '../types.js'; export interface Props { /** Schedules to display */ schedules: AgentScheduleData[]; /** Loading state */ loading?: boolean; /** Show actions column */ showActions?: boolean; /** Callback when schedule is clicked */ onScheduleClick?: (schedule: AgentScheduleData) => void; /** Callback when enable is clicked */ onEnable?: (schedule: AgentScheduleData) => void; /** Callback when disable is clicked */ onDisable?: (schedule: AgentScheduleData) => void; /** Callback when run now is clicked */ onRunNow?: (schedule: AgentScheduleData) => void; /** Empty state snippet */ empty?: Snippet; } declare const AgentScheduleList: import("svelte").Component; type AgentScheduleList = ReturnType; export default AgentScheduleList; //# sourceMappingURL=AgentScheduleList.svelte.d.ts.map