import { OrderTypes } from "@medusajs/framework/types";
export type UpsertOrderAddressDTO = OrderTypes.UpsertOrderAddressDTO;
export interface UpdateOrderAddressDTO extends UpsertOrderAddressDTO {
    id: string;
}
export interface CreateOrderAddressDTO extends UpsertOrderAddressDTO {
}
export type OrderAddressDTO = OrderTypes.OrderAddressDTO;
//# sourceMappingURL=address.d.ts.map