import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Alegra implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getContacts(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getItems(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getTaxes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getBankAccounts(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getSellers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getCategories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getAccountCategories(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getNumberTemplates(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getCostCenters(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getPriceLists(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getRetentions(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
