/**
 * PostNL Ecommerce APIsLib
 *
 * This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
 */
import { Schema } from '../schema';
export interface Signature {
    /** The barcode of the shipment for which the signature is returned */
    barcode?: string;
    /** The date of the signature */
    signatureDate?: string;
    /** The signature content; base64 encoded GIF format. */
    signatureImage?: string;
}
export declare const signatureSchema: Schema<Signature>;
