/**
* Returns the date of Good Friday for a given year.
* @paramyear
*/exportdeclarefunctiongetGoodFriday(year: number): Date;
/**
* Returns true if the given date is Good Friday.
* @paramdate
*/exportdeclarefunctionisGoodFriday(date: Date): boolean;