import { default as React } from 'react'; export interface RepeaterCarouselProps extends React.HTMLAttributes { items?: any[]; children?: React.ReactNode | ((context: { item: any; index: number; }) => React.ReactNode); /** * @select|inline-arrows|bottom-controls */ variant?: 'inline-arrows' | 'bottom-controls'; /** * @select|one|multiple|fractional */ itemsPerView?: 'one' | 'multiple' | 'fractional'; /** * @type|class * @schema [{ * "key": "Outer Margin", * "prefix": "m", * "type": "select", * "options": [ * {"key": "0", "label": "None"}, * {"key": "4", "label": "Medium"} * ] * },{ * "key": "Gap", * "prefix": "gap", * "type": "select", * "options": [ * {"key": "0", "label": "None (0px)"}, * {"key": "2", "label": "Small (8px)"}, * {"key": "4", "label": "Medium (16px)"}, * {"key": "8", "label": "Large (32px)"} * ] * }] */ className?: string; } declare const RepeaterCarousel: React.FC; export default RepeaterCarousel;