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