import { ReactElement } from 'react'; type Logo = { logo?: string | null; altText?: string | null; }; type LogoCarouselData = { placeholderImage?: string; heading?: string | null; logos?: (Logo | null)[] | null; maskImages?: boolean | null; }; export default function LogoCarousel(props: { data: LogoCarouselData; className?: string; textSize?: `text-${string}`; textPadding?: `p-${string}`; mediumTextSize?: `md:text-${string}`; textColor?: `text-${string}`; repeat?: number; }): ReactElement; export {};