1 | import * as React from "react";
|
2 |
|
3 | declare namespace CarouselCaption {
|
4 | export interface CarouselCaptionProps extends React.HTMLProps<CarouselCaption> {
|
5 | componentClass?: React.ElementType | undefined;
|
6 | }
|
7 | }
|
8 | declare class CarouselCaption extends React.Component<CarouselCaption.CarouselCaptionProps> {}
|
9 | export = CarouselCaption;
|