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