import { Plugin } from "vite"; //#region src/vite.d.ts /** * Vite plugin for Agents SDK projects. * * Currently handles TC39 decorator transforms (Oxc doesn't support them yet, * oxc#9170) so `@callable()` works at runtime. Will grow to cover other * Agents-specific build concerns as needed. */ declare function agents(): Plugin; //#endregion export { agents as default }; //# sourceMappingURL=vite.d.ts.map