export declare function normalizeSafeRelativePath(value: string, label?: string): string; export declare function resolvePathWithinRoot(root: string, relativePath: string, label?: string): string; export declare function isPathInside(parent: string, child: string): boolean; /** * Reject every symlink component. This is intentionally stricter than merely * checking the final realpath: migration state must be a real, reviewable tree * inside the project, not an alias to another location. */ export declare function assertNoSymlinkComponents(root: string, relativePath: string, options?: { allowMissingLeaf?: boolean; }): Promise; //# sourceMappingURL=paths.d.ts.map