import type { IHookFunctions, IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData } from 'n8n-workflow'; import { getRepositories, getUsers } from './SearchFunctions'; export declare class GithubTrigger implements INodeType { description: INodeTypeDescription; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise; create(this: IHookFunctions): Promise; delete(this: IHookFunctions): Promise; }; }; methods: { listSearch: { getUsers: typeof getUsers; getRepositories: typeof getRepositories; }; }; webhook(this: IWebhookFunctions): Promise; } //# sourceMappingURL=GithubTrigger.node.d.ts.map