react-bootstrap
Version:
Bootstrap 4 components built with React
8 lines (7 loc) • 340 B
TypeScript
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
export interface CarouselItemProps extends BsPrefixPropsWithChildren {
interval?: number;
}
declare type CarouselItem = BsPrefixRefForwardingComponent<'div', CarouselItemProps>;
declare const CarouselItem: CarouselItem;
export default CarouselItem;