export interface ContactButtonsProps {
    onEmailClick?: () => void;
    onChatClick?: () => void;
    onCallClick?: () => void;
}
