import type { ImportSource } from './ImportSource'; import type { ProjectPreferences } from './ProjectPreferences'; export interface ProjectConfig { globalComponents?: Array>; globalDirectives?: Array>; preferences?: Partial; } export interface ResolvedProjectConfig { globalComponents: Record; globalDirectives: Record; preferences: ProjectPreferences; } export declare const DEFAULT_PROJECT_CONFIG: ResolvedProjectConfig; //# sourceMappingURL=ProjectConfig.d.ts.map