import type { User } from '@n8n/db'; import type { Scope } from '@n8n/permissions'; import type { WorkflowFinderService } from '../../../workflows/workflow-finder.service'; export declare function getSdkReferenceHint(error: unknown): string | undefined; export type FoundWorkflow = NonNullable>>; export type GetMcpWorkflowOptions = { includeActiveVersion?: boolean; }; export declare function getMcpWorkflow(workflowId: string, user: User, scopes: Scope[], workflowFinderService: WorkflowFinderService, options?: GetMcpWorkflowOptions): Promise;