export { injectRollupInputs }; export { normalizeRollupInput }; import type { ResolvedConfig, Rollup } from 'vite'; type InputOption = Rollup.InputOption; type InputsMap = Record; declare function injectRollupInputs(inputsNew: InputsMap, config: ResolvedConfig): InputsMap; declare function normalizeRollupInput(input?: InputOption): InputsMap;