import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; import { templateSearch } from './methods/templateSearch'; import { loadCategories } from './methods/loadCategories'; import { loadTags } from './methods/loadTags'; export declare class Carbone implements INodeType { description: INodeTypeDescription; methods: { listSearch: { templateSearch: typeof templateSearch; }; loadOptions: { loadCategories: typeof loadCategories; loadTags: typeof loadTags; }; }; execute(this: IExecuteFunctions): Promise; }