import type { InlineConfig as ViteInlineConfig } from '../../../compiled/vite'; export type ITmpUserConfig = Record; /** * type of config processor */ export type IConfigProcessor = (userConfig: ITmpUserConfig, currentViteConfig: Partial) => Partial; /** * config transformer */ declare const _default: (userConfig: ITmpUserConfig) => ViteInlineConfig; export default _default;