export * from "./constants.d.cts";
export * from "./NanoRepository.d.cts";
export * from "./types.d.cts";
export * from "./adapter.d.cts";
/**
 * @description A TypeScript module for interacting with Nano databases
 * @summary This module provides a set of utilities, classes, and types for working with Nano databases. It includes repository patterns, adapters, and type definitions to simplify database operations. Key exports include {@link NanoAdapter}, {@link NanoRepository}, {@link NanoFlags}, and {@link NanoFlavour}.
 * @module for-nano
 */
/**
 * @description Package version identifier
 * @summary Stores the current package version string for the for-nano module
 * @const VERSION
 * @memberOf module:for-nano
 */
export declare const VERSION = "0.12.3";
/**
 * @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 = "8ff7ff9";
/**
 * @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.12.3-8ff7ff9";
/**
 * @description Package version identifier
 * @summary Stores the current package version string for the for-nano module
 * @const PACKAGE_NAME
 * @memberOf module:for-nano
 */
export declare const PACKAGE_NAME = "@decaf-ts/for-nano";
