import type { INodeTypeDescription, INodeType, IExecuteFunctions } from 'n8n-workflow';
import { loadOptions } from './methods';
export declare class Tulip implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: typeof loadOptions;
    };
    execute(this: IExecuteFunctions): Promise<import("n8n-workflow").INodeExecutionData[][]>;
}
