import type { Workflow } from '../../types/index.js'; import type { EndpointConfig } from '../../config/endpoints.js'; import type { PlaygroundMode, PlaygroundConfig } from '../../types/playground.js'; interface Props { workflowId: string; workflow?: Workflow; mode?: PlaygroundMode; initialSessionId?: string; endpointConfig?: EndpointConfig; config?: PlaygroundConfig; onClose?: () => void; onTogglePanel?: () => void; isPipelinePanelOpen?: boolean; onSessionNavigate?: (sessionId: string) => void; } declare const Playground: import("svelte").Component; type Playground = ReturnType; export default Playground;