import { LayoutBoxInterface, } from '../index'; interface LayoutInterface { id: number; category: string; layoutType: string; name: string; productId: string; imageUrl: string; layoutBoxes: LayoutBoxInterface[]; } export default LayoutInterface;