import { CallToActionTypes } from '../../utils/variant.types'; import { FC, SVGProps } from 'react'; export interface ArrowProps { variant: CallToActionTypes; className?: string; } declare const SvgArrowIcon: FC>; export default SvgArrowIcon;