import { Kundli } from "../kundli/types";
import { MatchResult, DoshaResult } from "./types";
/**
 * Checks for Mangal Dosha (Mars defect).
 * Rule: Mars in 1, 4, 7, 8, 12 from Lagna.
 * South India also checks from Moon and Venus, but North usually stresses Lagna.
 * We will return boolean based on Lagna.
 */
/**
 * Checks for Mangal Dosha (Mars defect) with exceptions.
 * Logic:
 * 1. Check Mars position from Lagna, Moon, and Venus.
 * 2. Standard Houses: 1, 4, 7, 8, 12. (Some traditions include 2).
 * 3. Exceptions: Mars in Own Sign (Aries, Scorpio), Exalted (Capricorn), or specific house/sign combos.
 */
export declare function checkMangalDosha(kundli: Kundli): DoshaResult;
/**
 * Calculates the complete Ashtakoot Guna Milan score.
 */
export declare function matchKundli(boy: Kundli, girl: Kundli): MatchResult;
//# sourceMappingURL=index.d.ts.map