import { Location } from './location'; /** * Utility method to determine if the date and time has a melacha (work) prohibition. * Although there are many opinions on the time of tzais, for simplicity * this function uses solar depression of 8.5 degrees. * * @return `true` if melacha is prohibited or `false` if it is not. */ export declare function isAssurBemlacha(currentTime: Date, location: Location, useElevation: boolean): boolean;