/** * Entry point creation and path conversion utilities * @module code-splitter/entry-points */ import type { SplitOptions } from "./types.js"; interface EntryPointsResult { entryPoints: Record; routeMap: Map; } export declare function createEntryPoints(routes: SplitOptions["routes"]): EntryPointsResult; export declare function convertPathToName(path: string): string; export {}; //# sourceMappingURL=entry-points.d.ts.map