import { TimePeriod } from './time-period.js';
import { type IBillingDetailsResponse } from '../../types/index.js';
export declare class BillingDetails {
    readonly enableCheckout: boolean | null;
    readonly purchaseOrderNumber: string | null;
    readonly additionalInformation: string | null;
    readonly paymentTerms: TimePeriod;
    constructor(billingDetails: IBillingDetailsResponse);
}
