import type { IExecuteFunctions, ICredentialsDecrypted, ICredentialTestFunctions, ILoadOptionsFunctions, INodeCredentialTestResult, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; export type JenkinsApiCredentials = { username: string; apiKey: string; baseUrl: string; }; export declare class Jenkins implements INodeType { description: INodeTypeDescription; methods: { credentialTest: { jenkinApiCredentialTest(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise; }; loadOptions: { getJobs(this: ILoadOptionsFunctions): Promise; getJobParameters(this: ILoadOptionsFunctions): Promise; }; }; execute(this: IExecuteFunctions): Promise; } //# sourceMappingURL=Jenkins.node.d.ts.map