import { IHookFunctions, IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow'; import { getProjects } from './project/options'; export declare class AzureDevOpsTrigger implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getProjects: typeof getProjects; getRepositories: (this: ILoadOptionsFunctions) => Promise; getBranches: (this: ILoadOptionsFunctions) => Promise; }; }; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise; create(this: IHookFunctions): Promise; delete(this: IHookFunctions): Promise; }; }; webhook(this: IWebhookFunctions): Promise; }