import { ObjectDictionary } from "@opticss/util"; export interface ModuleType { definitiveCollection: string; } export interface ModuleCollection { types: string[]; group?: string; defaultType?: string; privateCollections?: string[]; } export interface UnresolvableCollection { unresolvable: true; } export interface AppMeta { name: string; rootName: string; } export interface ModuleConfig { app: AppMeta; types: ObjectDictionary; collections: ObjectDictionary; } export declare const MODULE_CONFIG: ModuleConfig; //# sourceMappingURL=module-config.d.ts.map