export * from "./indexes/index.d.mts";
export * from "./repository.d.mts";
export * from "./adapter.d.mts";
export * from "./constants.d.mts";
export * from "./errors/index.d.mts";
export * from "./metadata.d.mts";
export * from "./decorators.d.mts";
export * from "./types.d.mts";
export { reAuth, wrapDocumentScope, testReservedAttributes, generateIndexDoc } from "./utils.d.mts";
export * from "./query/index.d.mts";
export * from "./views/index.d.mts";
/**
 * @description CouchDB adapter for Decaf.ts
 * @summary A TypeScript adapter for CouchDB database operations, providing a seamless integration with the Decaf.ts framework. This module includes classes, interfaces, and utilities for working with CouchDB databases, including support for Mango queries, document operations, and sequence management.
 * @module for-couchdb
 */
/**
 * @description Stores the current package version
 * @summary The version string of the for-couchdb package
 * @const VERSION
 */
export declare const VERSION = "0.14.4";
/**
 * @description Represents the current commit hash of the module build.
 * @summary Stores the current git commit hash for the package. The build replaces
 * the placeholder with the actual commit hash at publish time.
 * @const COMMIT
 */
export declare const COMMIT = "80b9ad6";
/**
 * @description Represents the full version string of the module.
 * @summary Stores the semver version and commit hash for the package.
 * The build replaces the placeholder with the actual `<version>-<commit>` value at publish time.
 * @const FULL_VERSION
 */
export declare const FULL_VERSION = "0.14.4-80b9ad6";
/**
 * @description Stores the current package name
 * @summary The version string of the for-couchdb package
 * @const PACKAGE_NAME
 */
export declare const PACKAGE_NAME = "@decaf-ts/for-couchdb";
