import { VivawalletAPIInit } from '../types/Vivawallet.types';
import VivaEndpoints from './VivaEndpoints.class';
declare class VivaSkull extends VivaEndpoints {
    /** VivaWallet Client ID */
    clientId: string;
    /** VivaWallet Client Secret */
    clientSecret: string;
    /** VivaWallet Access Merchant ID */
    merchantId: string;
    /** VivaWallet Access API Key */
    apikey: string;
    /** Vivawallet payment source code */
    sourceCode: string | null;
    /** Active logs in console */
    logs: boolean;
    constructor(datas: VivawalletAPIInit);
}
export default VivaSkull;
