/** * Copyright IBM Corp. 2023, 2023 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import React, { ReactNode } from 'react'; interface CarouselItemProps { /** * Provide the contents of the CarouselItem. */ children: ReactNode; /** * Provide an optional class to be applied to the containing node. */ className?: string; } /** * TODO: A description of the component. */ declare const CarouselItem: React.ForwardRefExoticComponent>; export { CarouselItem }; //# sourceMappingURL=CarouselItem.d.ts.map