import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
export declare class OvhDedicatedServer implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getServers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getCompatibleTemplates(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getPartitionSchemes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getServerTasks(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getServerInterventions(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getServerIPs(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getVirtualMACs(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getSecondaryDNSDomains(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
