import { Plugin } from "../../types/Plugin.mjs"; //#region src/strategy/classname-first/server.d.ts declare const settings: Map; declare const onBoot: Plugin<'onBoot'>; declare const onPropTree: Plugin<'onPropTree'>; declare const name = "classname-first"; //#endregion export { name, onBoot, onPropTree, settings };