import { ColorInfoInterface, DimensionsInterface, LayoutBoxInterface, } from '../index'; interface ProductViewInterface { backgroundColor: string; dimensions: DimensionsInterface; id: number; layoutBoxes: LayoutBoxInterface[]; layoutId?: number; } export default ProductViewInterface;