import { normalizePath, type PathInputOptions, resolvePath } from "@caupulican/pi-agent-core/paths"; export { normalizePath, type PathInputOptions, resolvePath }; /** * Resolve a path to its canonical (real) form, following symlinks. * Falls back to the raw path if resolution fails (e.g. the target does * not exist yet), so that callers never crash on missing filesystem * entries. */ export declare function canonicalizePath(path: string): string; /** * Returns true if the value is NOT a package source (npm:, git:, etc.) * or a remote URL protocol. Bare names, relative paths, and file: URLs * are considered local. */ export declare function isLocalPath(value: string): boolean; export declare function getCwdRelativePath(filePath: string, cwd: string): string | undefined; export declare function formatPathRelativeToCwdOrAbsolute(filePath: string, cwd: string): string; export declare function markPathIgnoredByCloudSync(path: string): void; //# sourceMappingURL=paths.d.ts.map