export declare class PaywayConfig {
    readonly bankAccountId: string;
    readonly merchantId: string;
    readonly secretKey: string;
    readonly publishableKey: string;
    readonly apiRoot: string;
    readonly responseType: 'json' | 'xml';
    [key: string]: string | undefined;
    constructor(bankAccountId: string, merchantId: string, secretKey: string, publishableKey: string, apiRoot: string, responseType: 'json' | 'xml');
}
