import { IAuthProvider } from 'fireblocks-sdk/dist/src/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;
}
export declare function getAuthProvider(privateKey: string, apiKey: string): IAuthProvider;
