import Joi from 'joi'; /** @description The html templates for a given packing slip. */ export declare class PackingSlipTemplate { /** @description The name that should be associated with this packing slip in the platform */ name: string; /** @description The html template that should be displayed at the top of the packing slip */ header: string; /** @description The html template that should be displayed above the items being printed out */ items_header: string; /** @description The html template that will be rendered for each item */ item: string; /** @description The html template that should be displayed at the bottom of the packing slip */ footer: string; } export declare const PackingSlipTemplateSchema: Joi.ObjectSchema;