type Props = { containerHeight?: number | string; data: { url: string; }[]; }; declare const Carousel: { ({ containerHeight, data }: Props): JSX.Element; defaultProps: { containerHeight: number; }; }; export default Carousel;