import { s as Plugin } from "../core-t4FMmF2c.js"; //#region src/plugins/json-schema.d.ts interface JSONSchemaOptions { /** * insert `$schema` field to JSON files on creation. * * @defaultValue false */ insert?: boolean; } /** * Generate JSON schemas locally for collection schemas * * note: **it only works with Zod** */ declare function jsonSchema({ insert }?: JSONSchemaOptions): Plugin; //#endregion export { JSONSchemaOptions, jsonSchema as default };