UNPKG

react-configurable-carousel

Version:

A simple and responsive configurable 2D/3D carousel React component

33 lines (32 loc) 1.38 kB
import React from "react"; import { ComponentStory, ComponentMeta } from "@storybook/react"; import { CarouselControllerHandle } from "../components/Carousel/CarouselComponents/Carousel"; declare const _default: ComponentMeta<React.ForwardRefExoticComponent<{ arrows: boolean; dotsNavigation: boolean; dotsNavigationInside?: boolean | undefined; dotNavigationOutlineColor?: string | undefined; dotNavigationFillColor?: string | undefined; children?: React.ReactNode; width: string; height: string; autoScrollInterval?: number | undefined; autoScrollClickDelay?: number | undefined; carouselStyle?: "flat" | "3d" | undefined; outOfFocusDarken?: boolean | undefined; } & React.RefAttributes<CarouselControllerHandle>>>; export default _default; export declare const FirstStory: ComponentStory<React.ForwardRefExoticComponent<{ arrows: boolean; dotsNavigation: boolean; dotsNavigationInside?: boolean | undefined; dotNavigationOutlineColor?: string | undefined; dotNavigationFillColor?: string | undefined; children?: React.ReactNode; width: string; height: string; autoScrollInterval?: number | undefined; autoScrollClickDelay?: number | undefined; carouselStyle?: "flat" | "3d" | undefined; outOfFocusDarken?: boolean | undefined; } & React.RefAttributes<CarouselControllerHandle>>>;