import { ReactNode } from 'react'; import { Settings } from 'react-slick'; import { SxProps } from '@mui/material'; import { Theme } from '../../../theme/muiTheme'; export interface CarouselSectionProps { title?: string | JSX.Element; description?: string | JSX.Element; settings?: Settings; children: ReactNode; sx?: SxProps; } declare const CarouselSection: ({ title, description, children, settings, sx, }: CarouselSectionProps) => JSX.Element; export { CarouselSection };