/** * Package version constant. * Imports version directly from package.json * * @example * ```typescript * import { getPackageVersion } from './utils/version'; * console.log(getPackageVersion()); // "0.14.11" * ``` */ /** * Get the package version from package.json * @returns The package version from package.json */ export declare function getPackageVersion(): string; /** * Get the package name * @returns The package name from package.json */ export declare function getPackageName(): string; //# sourceMappingURL=version.d.ts.map