import type { Plugin } from "esbuild"; import type { PageFiles } from "../../../types"; type Params = { entryToPage: Map; post_build_fn?: (params: { artifacts: any[]; }) => Promise | void; }; export default function esbuildCTXArtifactTracker({ entryToPage, post_build_fn, }: Params): Plugin; export {};