import { RequiredPaymentMethodEnum } from './RequiredPaymentMethodEnum';
/** Internal customer billing capacities for customer control panel */
export interface BillingCapacities {
    /** Indicates if the debt system has been enabled on the customer account */
    canUseDebtSystem: boolean;
    /** Indicates customer's ability to use postal mailing for invoices */
    canUsePostalMailForInvoices: boolean;
    /** Indicates the mandatory nature of having a valid payment method */
    requiredPaymentMethod: RequiredPaymentMethodEnum;
}
//# sourceMappingURL=BillingCapacities.d.ts.map