import { IExecuteFunctions } from 'n8n-core';
import { ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class ExactOnline implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getDivisions(this: ILoadOptionsFunctions): Promise<{
                name: string;
                value: string;
            }[]>;
            getServices(this: ILoadOptionsFunctions): Promise<{
                name: string;
                value: string;
            }[]>;
            getResources(this: ILoadOptionsFunctions): Promise<{
                name: string;
                value: string;
            }[]>;
            getOperations(this: ILoadOptionsFunctions): Promise<{
                name: string;
                value: string;
            }[]>;
            getFields(this: ILoadOptionsFunctions): Promise<{
                name: string;
                value: string;
            }[]>;
            getFieldsFilter(this: ILoadOptionsFunctions): Promise<{
                name: string;
                value: string;
            }[]>;
            getFieldsData(this: ILoadOptionsFunctions): Promise<{
                name: string;
                value: string;
            }[]>;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
