import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; import { getObjects, getObjectFields, getDropdownValues, getFieldTypes } from './methods'; export declare class Fireberry implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getObjects: typeof getObjects; getObjectFields: typeof getObjectFields; getDropdownValues: typeof getDropdownValues; getFieldTypes: typeof getFieldTypes; }; }; execute(this: IExecuteFunctions): Promise; }