import React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; interface IBanner { id: string; component: React.ReactNode | (() => JSX.Element); } export interface BannerCarouselProps extends IReactComponentProps { /** `Banner` components to be displayed in the carousel. */ banners?: IBanner[]; } declare const BannerCarousel: (props: BannerCarouselProps) => React.JSX.Element; export default BannerCarousel; //# sourceMappingURL=BannerCarousel.d.ts.map