import AlertStoreModel from './AlertStoreModel'; import AssetStoreModel from './AssetStoreModel'; import PermissionStoreModel from './PermissionStoreModel'; import PageStoreModel from './PageStoreModel'; export default interface RootState { alerts: AlertStoreModel; assets: AssetStoreModel; permissions: PermissionStoreModel; pages: PageStoreModel; }