/** * A decorator-driven AdonisJS library that lets you annotate Lucid ORM models with metadata to automatically generate CRUD controllers, validation rules, OpenAPI schemas, and a unified query interface. * @module @nhtio/lucid-resourceful */ /** * The current version of the package. * * @tip This is a constant that is replaced during the build process with the actual version of the package. */ export declare const version: string; export { withResourceful } from "./private/mixin"; export { resourcefulColumn, resourcefulComputed, resourcefulBelongsTo, resourcefulHasOne, resourcefulHasMany, resourcefulManyToMany, resourcefulHasManyThrough, } from "./private/decorators"; export * as errors from "./errors"; export * as definitions from "./definitions"; export { resourcefulRouterMacro } from "./private/router_macro/index"; export { odataRouterMacro } from "./private/odata_macro/index"; export { configure } from "./integration/configure";