export type ReachabilityTargetValidation = { isDirectory: boolean; isInsideCwd: boolean; isValid: boolean; targetExists: boolean; }; /** * Validates that a target directory meets the requirements for reachability analysis. * * @param targets - Array of target paths to validate. * @param cwd - Current working directory. * @returns Validation result object with boolean flags. */ export declare function validateReachabilityTarget(targets: string[], cwd: string): Promise; //# sourceMappingURL=validate-reachability-target.d.mts.map