import { AppStateDomElementsInterface, AppStateFileUploadsInterface, AppStateImages, AppStateProductSelectedInterface, AppStateSettingsInterface, AppStateSidebarInterface, AppStateTutorialInterface, AppStateUiInterface, ColorSelectionInterface, FrontCoverInterface, LayoutBoxInterface, LayoutInterface, PictureUploadInterface, ProductViewInterface, } from '../index'; interface AppStateInterface { domElements: AppStateDomElementsInterface; fileUploads: AppStateFileUploadsInterface; images: AppStateImages; productSelection: AppStateProductSelectedInterface; sidebar: AppStateSidebarInterface; tutorial: AppStateTutorialInterface; settings: AppStateSettingsInterface; ui: AppStateUiInterface; } export default AppStateInterface;