import { GreetingOptions } from "./types";
export declare class GreetingGenerator {
    private locale;
    private languages;
    private language;
    private timeSlots;
    constructor(options?: GreetingOptions);
    private getCurrentDate;
    private getDayOfWeek;
    private getCurrentTimeSlot;
    generateGreeting(): string;
    setLocale(locale: string): void;
}
