import type { Context } from './configuration.js';
declare class PaybyrdAPI {
    private authToken;
    private isApiKey;
    private baseUrl;
    context: Context;
    constructor(authToken: string, context?: Context);
    run(method: string, arg: any): Promise<string>;
}
export default PaybyrdAPI;
