import React from "react"; import { ArrowComponentType, ArrowStyle } from "./components/arrow"; import { BulletComponentType, BulletStyle } from "./components/bullet"; import { BulletsComponentType } from "./components/bullets"; export interface SliderProps { activeIndex?: number; ArrowComponent?: ArrowComponentType; arrowStyle?: ArrowStyle; auto?: number; BulletComponent?: BulletComponentType; BulletsComponent?: BulletsComponentType; bulletStyle?: BulletStyle; children?: React.ReactNode[]; hasArrows?: boolean; hasBullets?: boolean; onSlideChange?: (slide: number) => void; setSlideCustom?: (slide: number) => number; slidesAtOnce?: number; slidesToSlide?: number; } declare const Slider: React.FunctionComponent; export default Slider;