type dayPart = 'Morning' | 'Afternoon' | 'Evening';

declare module '@visimedia/part-of-day' {
	export function get(epoch: number): string;
	export function getByHour(hour: number): string;
	export function getNow(): string;
}