import React from 'react'; import { StackedCarousel } from '.'; export interface ResponsiveContainerProps { render: (parentWidth: number, carouselRef?: React.RefObject) => React.ReactNode; carouselRef?: React.MutableRefObject; } export default function ResponsiveContainer(props: ResponsiveContainerProps): JSX.Element;