import type { Snippet } from 'svelte'; import type { AgentRunHistoryEntry } from '../types.js'; export interface Props { /** Run history entries */ history: AgentRunHistoryEntry[]; /** Loading state */ loading?: boolean; /** Callback when entry is clicked */ onEntryClick?: (entry: AgentRunHistoryEntry) => void; /** Empty state snippet */ empty?: Snippet; } declare const AgentRunHistory: import("svelte").Component; type AgentRunHistory = ReturnType; export default AgentRunHistory; //# sourceMappingURL=AgentRunHistory.svelte.d.ts.map