type EventType = 'birthday' | 'workAnniversary' | 'companyEvent' | 'other'; export interface EventCardProps { eventType: EventType; date: string; title: string; description?: string; avatarSrc?: string; } export declare function EventCard({ eventType, date, title, description, avatarSrc, }: EventCardProps): import("react/jsx-runtime").JSX.Element; export {};