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