1 | import * as React from "react";
|
2 |
|
3 | declare namespace CarouselItem {
|
4 | interface CarouselItemProps extends React.HTMLProps<CarouselItem> {
|
5 | active?: boolean | undefined;
|
6 | animtateIn?: boolean | undefined;
|
7 | animateOut?: boolean | undefined;
|
8 | direction?: string | undefined;
|
9 | index?: number | undefined;
|
10 | // TODO: Add more specific type
|
11 | onAnimateOutEnd?: Function | undefined;
|
12 | }
|
13 | }
|
14 | declare class CarouselItem extends React.Component<CarouselItem.CarouselItemProps> {}
|
15 | export = CarouselItem;
|