import type { IAuthenticateGeneric, Icon, ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class HttpBearerAuth implements ICredentialType {
    name: string;
    displayName: string;
    genericAuth: boolean;
    icon: Icon;
    properties: INodeProperties[];
    authenticate: IAuthenticateGeneric;
}
