import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow'; export declare class BrazeApi implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: INodeProperties[]; authenticate: IAuthenticateGeneric; test: ICredentialTestRequest; static getInstanceEndpoint(instance: string): string; static getRateLimitInfo(headers: { [key: string]: string | string[] | undefined; }): { limit: number; remaining: number; reset: number; }; }