import type { ReflectionConfiguration } from "../plugin/config.js"; export type ReflectionLayer = "run" | "project" | "global"; export declare const DEFAULT_REFLECTION: ReflectionConfiguration; export declare function reflectionEnabled(config: ReflectionConfiguration, env?: string | undefined): boolean; export declare function projectKey(root: string): string; export declare function configRoot(explicit?: string): string; export declare function nearestPackageVersion(): Promise;