import { type WorkflowCatalog } from '../../agent/workflow/catalog.js'; import type { WorkflowDefinition } from '../domain/definition.js'; import type { WorkflowDefinitionRegistry, WorkflowDefinitionSummary } from './workflow-definition-registry.js'; export declare class CatalogWorkflowDefinitionRegistry implements WorkflowDefinitionRegistry { private readonly catalog; constructor(catalog?: WorkflowCatalog); list(): Promise; get(id: string): Promise; }