import type { InstallLocation } from '../../types/install.js'; /** * Returns the absolute path to the package root directory. * * @returns The resolved path to the package root directory. */ export declare const getSourceRoot: () => string; /** * Returns the user's home directory from environment variables. * * @returns The home directory path. * @throws If neither `HOME` nor `USERPROFILE` is set. */ export declare const getHomeDir: () => string; /** * Resolves the target `.claude/` directory based on install location. * * @param location - `'global'` for `~/.claude/`, `'local'` for `./.claude/`. * @returns The absolute path to the target directory. */ export declare const getTargetDir: (location: InstallLocation) => string; //# sourceMappingURL=paths.d.ts.map