Files
Henry Whitaker 54ce0ece35 npm and composer
2020-12-13 15:59:35 +00:00

8 lines
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;