import { Address } from "./address";
import { Contact } from "./contact";
export declare class ShippingLocation {
    "address"?: Address | null;
    "contact"?: Contact | null;
    /**
    * The unique identifier of the shipping location, for use as `shippingLocationId` when creating an order.
    */
    "id"?: string;
    /**
    * The unique name of the shipping location.
    */
    "name"?: string;
    static readonly discriminator: string | undefined;
    static readonly mapping: {
        [index: string]: string;
    } | undefined;
    static readonly attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
        format: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
        format: string;
    }[];
    constructor();
}
