import { HTTPHeaders, HTTPMethod, HTTPQuery } from "../runtime"; export declare class HttpBearerAuth { private readonly apiPrefixPath; private readonly _userId; private readonly _authenticationKey; constructor(userId: number, authenticationKey: string); applyToRequest(path: string, method: HTTPMethod, queryParams: HTTPQuery, headerParameters: HTTPHeaders): Promise; private getResourcePath; }