/**
 * PostNL Ecommerce APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { CompleteStatus } from './completeStatus';
import { CurrentStatus } from './currentStatus';
import { Warning2 } from './warning2';
export interface ShippingstatusResponse {
    /** The current status and old statuses of the shipment */
    completeStatus?: CompleteStatus;
    /** The current status and old statuses of the shipment */
    currentStatus?: CurrentStatus;
    /** Possible warnings (see [Error Codes](#tag/Error-codes) for possible values) */
    warnings?: Warning2[];
}
export declare const shippingstatusResponseSchema: Schema<ShippingstatusResponse>;
