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