import type { EmblaOptionsType } from 'embla-carousel'; export type CarouselButtonsPosition = 'inside' | 'outside'; export type CarouselProps = { children: React.ReactNode; options?: EmblaOptionsType; withDots?: boolean; withButtons?: boolean; buttonsPosition?: CarouselButtonsPosition; }; export declare const Carousel: ({ children, options, withDots, withButtons, buttonsPosition, }: CarouselProps) => import("react/jsx-runtime").JSX.Element; export declare const CarouselSlide: ({ children }: { children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element;