import { LinkDto } from './../shared/link.dto'; import { ContactDto } from './../shared/contact.dto'; import { ProductLineImageDto } from './image.dto'; import { BrandInstructionDto } from './../shared/brand-instruction.dto'; import { EDesignDetailDto } from './../shared'; import { ProductLabelDto } from './../product/product-label.dto'; import { ProductLineRedemptionDto } from './processing/redemption.dto'; export declare class ProductLineLocaleDto { locale: string; brandLinks: LinkDto | undefined; contactInfo: ContactDto[] | undefined; images: ProductLineImageDto[] | undefined; brandInstructions: BrandInstructionDto[] | undefined; eDesignDetails?: EDesignDetailDto[]; defaultProductId: string; productLabels: ProductLabelDto[] | undefined; redemption: ProductLineRedemptionDto | undefined; id?: string; constructor(d?: ProductLineLocaleDto); }