import { IExecuteFunctions, IHttpRequestMethods, ILoadOptionsFunctions, IHookFunctions, IWebhookFunctions } from 'n8n-workflow'; export interface IAzureDevOpsCredentials { organizationUrl: string; personalAccessToken: string; } export declare function apiRequest(this: IExecuteFunctions | ILoadOptionsFunctions | IHookFunctions | IWebhookFunctions, method: IHttpRequestMethods, endpoint: string, body?: object, headers?: Record, baseUrl?: string): Promise;