export declare const ATHENA_DEVTOOLS_PACKAGE_VERSION_NAMES: readonly ["@xylex-group/athena", "@xylex-group/athena-auth-ui", "@heroui/react", "better-auth", "react", "next"]; export type AthenaDevtoolsPackageName = (typeof ATHENA_DEVTOOLS_PACKAGE_VERSION_NAMES)[number]; export interface AthenaDevtoolsPackageVersion { buildId: string | null; buildRevision: string | null; buildTimestamp: string | null; builtAt: string | null; dirty: boolean; gitSha: string | null; name: AthenaDevtoolsPackageName | string; source: "workspace" | "dependency"; version: string | null; } export declare function readAthenaDevtoolsApplicationProvenance(): { bundler: string | null; hmrGeneration: number | null; mode: string | null; nextBuildId: string | null; }; export declare function listAthenaDevtoolsPackageVersions(): AthenaDevtoolsPackageVersion[];