UNPKG

cdbreact

Version:

Elegant UI Kit and reusable components for building mobile-first, responsive webistes and web apps

24 lines (23 loc) 675 B
import React from "react"; import PropTypes from "prop-types"; interface Props { active?: boolean; children?: React.ReactNode; className?: string; tag?: any; childrenCount?: any; } declare const CarouselInner: { (props: Props): JSX.Element; propTypes: { active: PropTypes.Requireable<boolean>; children: PropTypes.Requireable<PropTypes.ReactNodeLike>; className: PropTypes.Requireable<string>; tag: PropTypes.Requireable<string | ((...args: any[]) => any)>; }; defaultProps: { tag: string; }; }; export default CarouselInner; export { CarouselInner as CDBCarouselInner };