import { type CountryCode } from '../../enums/index.js'; import { Money } from './money.js'; import { type IUnitPriceOverrideResponse } from '../../types/index.js'; export declare class UnitPriceOverride { readonly countryCodes: CountryCode[]; readonly unitPrice: Money; constructor(unitPriceOverride: IUnitPriceOverrideResponse); }