import React from 'react'; import { ContentTree } from '@financial-times/content-tree'; import { ContentProps } from '../../types'; /** There may or may not be a main carousel heading. In order to get the heading level correct for the headings in individual carousel cards, we capture what heading levels they should have in context */ export declare const CarouselCardHeadingLevelContext: React.Context<2 | 3>; interface CarouselProps extends ContentProps { } /** * Renders a Carousel component * */ declare const Carousel: React.FC>; export default Carousel;