import { AddressBase } from './address-base';
import { TaxIdentifier } from '../taxes/tax-identifier';
import { GeolocationItem } from './geolocation-item';
/** @description The address that a shipment will be delivered to */
export declare class ShipTo extends AddressBase {
    /** @description Tax IDs associated with the consignee */
    tax_identifiers?: TaxIdentifier[];
    /** @description List of Geolocation objects to help identify the location. */
    geolocation?: GeolocationItem[];
}
