import type { Plugin } from "esbuild"; import type { PageFiles } from "../../../types"; type Params = { entryToPage: Map; }; export default function virtualFilesPlugin({ entryToPage }: Params): Plugin; export {};