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; } declare const UniformCarousel: (props: Props) => React.JSX.Element; export default UniformCarousel;