declare const PACKAGE_VERSION: string; declare const GIT_HASH: string; interface PackageBadgeProps { /** * Additional CSS classes to apply to the badge */ className?: string; /** * Package name to display (e.g., "vuer", "uikit") */ packageName?: string; /** * Full package name for npm link (e.g., "@vuer-ai/vuer-uikit") */ packageFullName?: string; /** * Version string to display (e.g., "v0.0.72" or "0.0.72") */ versionText?: string; /** * Whether the version should be clickable (links to npm) */ linkable?: boolean; /** * Git hash to display (if provided) */ gitHash?: string; } /** * Low-level badge component that displays package information with provided values */ declare function PackageBadge({ className, packageName, packageFullName, versionText, linkable, gitHash, }: PackageBadgeProps): import("react/jsx-runtime").JSX.Element; interface BadgeProps { /** * Additional CSS classes to apply to the badge */ className?: string; /** * Whether to show the package name */ package?: boolean; /** * Whether to show just the version or include "v" prefix */ prefix?: boolean; /** * Whether the badge should be clickable (links to npm/github) */ linkable?: boolean; /** * Whether to show the version */ version?: boolean; /** * Whether to show the git hash */ hash?: boolean; } /** * High-level badge component that displays the current package version with boolean flags * Format: [ vuer | v0.0.72 ] hash */ declare function MjBadge({ className, package: showPackage, prefix, linkable, version, hash, }: BadgeProps): import("react/jsx-runtime").JSX.Element; export { PACKAGE_VERSION, GIT_HASH, PackageBadge, MjBadge }; export type { PackageBadgeProps, BadgeProps };