/** * Credits information */ export declare class CreditsInfo { /** * @property {number} creditsRemaining The amount of credits remaining */ readonly creditsRemaining: number; /** * @property {boolean} notEnoughCredits Whether the account has enough credits left or not */ readonly notEnoughCredits: boolean; /** * Creates an instance * @param {number} creditsRemaining The amount of credits remaining * @param {boolean} notEnoughCredits Whether the account has enough credits left or not */ constructor(creditsRemaining: number, notEnoughCredits: boolean); }