import React from 'react'; import { FlintCarouselNext as FlintCarouselNextElement } from '@getufy/flint-ui/carousel/flint-carousel'; /** * Carousel Next: navigation button to go to the next slide. * * @slot (default) - Custom icon content, replaces default chevron. */ export interface FlintCarouselNextProps extends React.HTMLAttributes { /** Whether the next button is disabled. */ disabled?: boolean; /** * Slide direction axis, inherited from the parent carousel. * Allowed values: 'horizontal' | 'vertical' */ orientation?: 'horizontal' | 'vertical'; } export declare const FlintCarouselNext: React.ForwardRefExoticComponent>;