/** * Check if a target path is inside a parent directory. * Resolves symlinks and handles absolute paths. * Returns true if target is the same as parent or is a subdirectory of parent. * @param target The path to check * @param parent The parent directory path * @returns boolean */ export declare function isPathInside(target: string, parent: string): boolean;