import { JSX } from "react/jsx-runtime";
type CardSliderProps = {
    title: string;
    category: string;
    description: string;
    link?: string;
};
declare const CardSlider: ({ slides, shape, randomBackground, }: {
    slides: CardSliderProps[];
    shape: string;
    randomBackground?: boolean;
}) => JSX.Element;
export default CardSlider;
