import React from 'react'; export interface CarouselProps { category: string; buttonText: string; description: string; title: string; externalUrl?: string; imageUrl: string; } export interface Theme { primaryPure: string; primaryLight: string; } declare type Props = { slides: CarouselProps[]; theme?: Theme; }; /** * * @deprecated This will be removed in the future */ declare const CarouselSlider: React.FC; export default CarouselSlider;