import { ProcessedEvent } from '../types';
type Props = {
    daysList: Date[];
    events: ProcessedEvent[];
};
declare const WeekAgenda: ({ daysList, events }: Props) => import("react/jsx-runtime").JSX.Element;
export { WeekAgenda };
