import { IAuthProvider } from "./iauth-provider"; export declare class ApiTokenProvider implements IAuthProvider { private privateKey; private apiKey; constructor(privateKey: string, apiKey: string); signJwt(path: string, bodyJson?: any): string; getApiKey(): string; }