import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties, ICredentialDataDecryptedObject } from 'n8n-workflow'; export declare class CloudflareApi implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: INodeProperties[]; authenticate: IAuthenticateGeneric; test: ICredentialTestRequest; static getR2Credentials(credentials: ICredentialDataDecryptedObject): { accessKeyId: string; secretAccessKey: string; endpoint: string; }; }