import { HDate } from '@hebcal/hdate'; /** * Represents a molad, the moment when the new moon is "born" */ export type MoladBase = { /** Hebrew date */ readonly hdate: HDate; /** hour of day (0-23) */ readonly hour: number; /** minutes past hour (0-59) */ readonly minutes: number; /** parts of a minute (0-17) */ readonly chalakim: number; }; export declare function calculateMolad(year: number, month: number): MoladBase;