import type { PlaygroundExecution } from '../../types/playground.js'; interface Props { executions: PlaygroundExecution[]; activeExecutionId: string | null; latestExecutionId: string | null; onSelect: (executionId: string) => void; } declare const ExecutionList: import("svelte").Component; type ExecutionList = ReturnType; export default ExecutionList;