import * as React from 'react'; import { CSSProperties } from 'react'; import { IMedia } from '../../../../types'; interface Props { items: T[]; nbElems: number; style?: CSSProperties; onPostChange: (post: IMedia | null) => void; } /** * This is a compact desktop-only carousel designed to fit inside a product-page "Buy Box" column. */ declare const BuyBoxCarousel: (props: Props) => React.JSX.Element; export default BuyBoxCarousel;