/** * Yoga — the 27 divisions of the *sum* of the sidereal Sun and Moon * longitudes, 13°20′ each. Unlike tithi, the ayanamsa does not cancel in a * sum, so sidereal longitudes are required. */ export interface Yoga { /** 0–26 (0 = Vishkambha). */ index: number; name: string; } /** * Yoga from sidereal Sun and Moon longitudes in degrees. * * @example * ```ts * yoga(121.51, 127.21); // { index: 18, name: 'Parigha' } * ``` */ export declare function yoga(siderealSunLongitude: number, siderealMoonLongitude: number): Yoga; //# sourceMappingURL=yoga.d.ts.map