import { FC } from 'react'; import { WeeklyItemProps } from '../weekly/components/weekly-item/WeeklyItem'; import { EmblaOptionsType } from 'embla-carousel'; export interface WeeklyGroup { label: string; items: WeeklyItemProps[]; } export interface WeeklyGroupProps { groups: WeeklyGroup[]; headerTitle?: string; showDots?: boolean; className?: string; /** * More information about the options can be found in https://www.embla-carousel.com/api/options/ */ carouselOptions?: EmblaOptionsType; renderHeaderActionsLabel?: (activeSlide: number) => string; } declare const WeeklyGroup: FC; export default WeeklyGroup;