import Joi from 'joi'; import { PackingSlip } from './packing-slip'; /** @description The brand requested for a fulfillment */ export declare class Branding { /** @description Packing slip associated with the brand */ packing_slip?: PackingSlip; /** @description Company name associated with the brand */ company_name?: string; } export declare const BrandingSchema: Joi.ObjectSchema;