export type SupportedLanguage = 'en' | 'tr';
export declare function getGreeting(args?: {
    lang?: SupportedLanguage;
    date?: Date;
}): string;
