import { GridProps } from '../grid/grid'; import { GridItemProps } from '../grid/grid-item/grid-item'; export interface CarouselListProps { className?: string; children?: any; styles?: any; gridProps?: GridProps; gridItemProps?: GridItemProps; isCarouselView?: boolean; } declare const CarouselList: { (props: CarouselListProps): import("@emotion/react/jsx-runtime").JSX.Element; displayName: string; defaultProps: {}; }; export default CarouselList;