import { type INodeType, type INodeTypeDescription, type IExecuteFunctions, type INodeExecutionData } from 'n8n-workflow'; declare module 'n8n-workflow' { interface INodeTypeDescription { usableAsTool?: boolean; } } export declare class Priority implements INodeType { description: INodeTypeDescription; execute(this: IExecuteFunctions): Promise; }