export declare class EzidebitConfig {
    readonly clientId: string;
    readonly digitalKey: string;
    readonly publicKey: string;
    readonly apiRoot: string;
    readonly nonPCIApiRoot: string;
    [key: string]: string | undefined;
    constructor(clientId: string, digitalKey: string, publicKey: string, apiRoot: string, nonPCIApiRoot: string);
}
