import { Rollup } from 'vite'; import { NormalizedClientBuild, NormalizedClientChunk } from '../../types.js'; export declare function normalizeViteClientChunk(chunk: Rollup.OutputChunk): NormalizedClientChunk; export declare function normalizeViteClientChunks(clientBundle: Rollup.OutputBundle): ReadonlyMap; export declare function normalizeViteClientBuild(clientBundle: Rollup.OutputBundle, inlineCssEnabled?: boolean): NormalizedClientBuild; export declare function getRouteFilePathsFromModuleIds(moduleIds: Array): string[]; export declare function getHydrationIdsFromModuleIds(moduleIds: Array): string[];