/** * Vaar — the vedic weekday. Unlike the civil day, the vedic day runs from * sunrise to sunrise: an instant before today's sunrise still belongs to * yesterday's vaar. */ export interface Vaar { /** 0 = Sunday … 6 = Saturday. */ index: number; /** English weekday name. */ name: string; /** Sanskrit vaar name, e.g. "Budhavaar". */ vaar: string; } /** * The vaar an instant belongs to, given that location's local sunrise for * the instant's civil date. * * @example * ```ts * vaar(new Date('1993-08-18T05:15:00Z'), 'Asia/Kathmandu', sunriseDate); * // { index: 3, name: 'Wednesday', vaar: 'Budhavaar' } * ``` */ export declare function vaar(date: Date, timezone: string, sunrise: Date): Vaar; //# sourceMappingURL=vaar.d.ts.map