/**
 * PostNL Ecommerce APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
import { MergedLabel } from './mergedLabel';
import { ResponseShipment1 } from './responseShipment1';
export interface LabellingResponse {
    /** The merged label output; only returned if the printer type selected in your request merges the pdf labels into a single file (e.g. using GraphicFile|Merge). */
    mergedLabels?: MergedLabel[];
    responseShipments?: ResponseShipment1[];
}
export declare const labellingResponseSchema: Schema<LabellingResponse>;
