import { INodeType, INodeTypeDescription, IExecuteFunctions } from 'n8n-workflow';
import * as loadOptionsMethods from './methods/loadOptions';
export declare class CleverFlow implements INodeType {
    description: INodeTypeDescription;
    execute(this: IExecuteFunctions): Promise<any[]>;
    methods: {
        loadOptions: {
            getWorkspaces: typeof loadOptionsMethods.getWorkspaces;
            getWorkflows: typeof loadOptionsMethods.getWorkflows;
            getWorkflowFields: typeof loadOptionsMethods.getWorkflowFields;
        };
    };
}
