import { IExecuteFunctions, IDataObject } from 'n8n-workflow';
export declare class BaseResource {
    static makeRequest(executeFunctions: IExecuteFunctions, method: 'GET' | 'POST' | 'PUT' | 'DELETE', endpoint: string, body?: IDataObject, index?: number): Promise<IDataObject>;
}
