/** * Navamsa (D9) — the ninth divisional chart: each rashi splits into nine * 3°20′ parts, counted continuously from Mesha. The continuous count is * exactly equivalent to the classical rule (movable signs start from * themselves, fixed from the 9th, dual from the 5th). */ /** Width of one navamsa, 3°20′. */ export declare const NAVAMSA_WIDTH: number; /** * The navamsa rashi (0 = Mesha) occupied by a sidereal longitude. * * @example * ```ts * navamsaRashi(127.2); // 2 (Moon at Simha 7°12′ falls in Mithuna navamsa) * ``` */ export declare function navamsaRashi(siderealLongitude: number): number; //# sourceMappingURL=navamsa.d.ts.map