/**
 * PostNL Ecommerce APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { Error6 } from './error6';
import { Warning1 } from './warning1';
export interface ResponseShipment {
    /** Possible errors. See the [Error Codes](#tag/Error codes) for possible values */
    errors?: Error6[];
    /** Possible warnings. See the [Error Codes](#tag/Error codes) for possible values */
    warnings?: Warning1[];
    /** The barcode used */
    barcode?: string;
}
export declare const responseShipmentSchema: Schema<ResponseShipment>;
