import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class MinioNode implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getBuckets(this: ILoadOptionsFunctions): Promise<{ name: any; value: any; }[]>; }; }; execute(this: IExecuteFunctions): Promise; }