import type { Workflow } from '../../types/index.js'; import type { EndpointConfig } from '../../config/endpoints.js'; interface Props { pipelineId: string; workflow: Workflow; endpointConfig: EndpointConfig; refreshTrigger?: number; } declare const PipelineKanbanView: import("svelte").Component; type PipelineKanbanView = ReturnType; export default PipelineKanbanView;