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