import type { IExecuteFunctions, ILoadOptionsFunctions, IHttpRequestMethods } from 'n8n-workflow'; export declare function apiRequest(this: IExecuteFunctions | ILoadOptionsFunctions, method: IHttpRequestMethods, resource: string, body?: object, query?: Record, headers?: Record, debugLog?: any[], timeout?: number): Promise; export declare function apiRequestAllItems(this: IExecuteFunctions | ILoadOptionsFunctions, method: IHttpRequestMethods, resource: string, body?: object, query?: Record, headers?: Record, pagination?: Record, debug?: boolean, timeout?: number): Promise;