import { IExecuteFunctions } from 'n8n-core'; import { ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class Directus implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getCollections(this: ILoadOptionsFunctions): Promise; getCustomCollections(this: ILoadOptionsFunctions): Promise; getRelationalFields(this: ILoadOptionsFunctions): Promise; getFieldsInCollection(this: ILoadOptionsFunctions): Promise; getRoles(this: ILoadOptionsFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; }