import { ColorSelectionInterface, LayoutBoxInterface, LayoutInterface, ProductViewInterface, } from '../index'; interface AppStateUiInterface { imageBeingDragged: boolean; isOrganiseView: boolean; layoutBoxBeforeTransforms: LayoutBoxInterface; layoutBoxBeingDragged: LayoutBoxInterface; imageBoxHasFocus: boolean; selectedColor: ColorSelectionInterface; selectedCurrencyCode: string; selectedLayout: LayoutInterface; selectedLayoutBoxId: string; selectedProductViewId: number; selectedProductViewIsFrontCover: boolean; selectedProductViewIsSinglePage: boolean; textBoxHasFocus: boolean; } export default AppStateUiInterface;