/** * Generic JSON loader that works in both test (lib/) and production (dist/lib/) environments. * Automatically resolves paths relative to the caller's location. * * @param importMetaUrl - Pass import.meta.url from the calling file * @param relativePath - Path to JSON file relative to the caller (e.g., '../package.json', './fixtures/data.json') * @returns The loaded JSON object */ export declare function loadJson(importMetaUrl: string, relativePath: string): T; export declare const pkg: { [key: string]: unknown; name: string; version: string; };