import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
 * Package Quota Response class
 * (used for serialization) - represents the response
 * body of the package quota endpoint.
 * This class is used to deserialize the response from the
 * package quota endpoint.
 * It contains the credit remaining, credit limit, used credit,
 * current period start date, and current period end date.
 */
export declare class PackageQuotaResponse implements BaseEntity {
    [key: string]: unknown;
    creditRemaining: number;
    creditLimit: number;
    usedCredit: number;
    currentPeriodStartDate: Date;
    currentPeriodEndDate: Date;
}
