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