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