export type GreetingProps = {
    name: string;
    avatar: string | HTMLElement;
    message?: string;
};
