import type { DevelopmentController } from '../../controllers/development';
import type { ManifestController } from '../../controllers/manifest';
import type { RouterController } from '../../controllers/router';
import type { TranslationController } from '../../controllers/i18n';
import type { AppStoreType } from '../../types';
export interface ProjectConfig {
    manifest: ManifestController;
    routing: RouterController;
    i18n: TranslationController;
    development: DevelopmentController;
    appStore?: AppStoreType;
}
