import { Kundli } from "../kundli/types";
export interface MatchingInput {
    boy: Kundli;
    girl: Kundli;
}
export interface KootaResult {
    name: string;
    score: number;
    maxScore: number;
    description: string;
    area: string;
}
export interface DoshaResult {
    hasDosha: boolean;
    isHigh: boolean;
    description: string;
}
export interface MatchResult {
    ashtakoot: {
        totalScore: number;
        kootas: KootaResult[];
    };
    dosha: {
        boy: DoshaResult;
        girl: DoshaResult;
    };
    verdict: string;
}
//# sourceMappingURL=types.d.ts.map