import { FC, SVGProps } from 'react';
type CarouselArrowRightIconProps = SVGProps<SVGSVGElement> & {
    title?: string;
    className?: string;
};
export declare const CarouselArrowRightIcon: FC<CarouselArrowRightIconProps>;
export {};
