import type { IHookFunctions, IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow'; export declare class GitlabTrigger implements INodeType { description: INodeTypeDescription; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise; /** * Gitlab API - Add project hook: * https://docs.gitlab.com/ee/api/projects.html#add-project-hook */ create(this: IHookFunctions): Promise; delete(this: IHookFunctions): Promise; }; }; webhook(this: IWebhookFunctions): Promise; } //# sourceMappingURL=GitlabTrigger.node.d.ts.map