///
import { Event } from '../../types';
interface IEventsGroupProps {
colors?: Record;
events: Event[];
hasMoreNext?: boolean;
onClickEvent?: (event?: Event) => void;
redirect?: () => void;
text: string;
textSeeMore?: string;
textLinkMore?: string;
title: string;
}
export declare const EventsGroup: ({ colors, events, hasMoreNext, onClickEvent, title, redirect, text, textSeeMore, textLinkMore, }: IEventsGroupProps) => JSX.Element;
export {};
//# sourceMappingURL=EventsGroup.d.ts.map