/** * Extract framework bundle file:// paths from code. * These are generated by the SSR VF modules transform. */ export declare function extractFrameworkBundlePaths(code: string): string[]; type FrameworkBundleExists = (path: string) => boolean | Promise; interface FindMissingFrameworkBundlePathsOptions { onError?: (path: string, error: unknown) => void; } /** Return framework bundle paths referenced by code that are missing locally. */ export declare function findMissingFrameworkBundlePaths(code: string, exists: FrameworkBundleExists, options?: FindMissingFrameworkBundlePathsOptions): Promise; export {}; //# sourceMappingURL=framework-bundle-paths.d.ts.map