import React from 'react'; import { FlintCarouselContent as FlintCarouselContentElement } from '@getufy/flint-ui/carousel/flint-carousel'; export interface FlintCarouselContentProps extends React.HTMLAttributes { /** Zero-based index of the first visible slide. */ index?: number; /** Number of slides visible at once. */ itemsPerView?: number; /** * Slide direction axis. * Allowed values: 'horizontal' | 'vertical' */ orientation?: 'horizontal' | 'vertical'; } export declare const FlintCarouselContent: React.ForwardRefExoticComponent>;