export type { ConfigResolved }; import type { ConfigBuiltIn, ConfigBuiltInResolved } from '../Config.js'; import type { ImportStringList } from '../../node/vite/shared/importString.js'; type ConfigUnresolved = WithoutImportString; type ConfigResolvedOnly = ConfigBuiltInResolved & Vike.ConfigResolved; type ConfigResolved = ConfigResolvedOnly & Omit; type WithoutImportString = { [K in keyof T]: Exclude; };