import Joi from 'joi'; import { ShipmentNotificationResult } from '../models'; /** @description The response for a NotifyShipments method */ export declare class ShipmentNotificationResponse { /** @description A list of results for shipment notifications */ notification_results: ShipmentNotificationResult[]; } export declare const ShipmentNotificationResponseSchema: Joi.ObjectSchema;