import { FC, SVGProps } from 'react'; type ArrowIconProps = SVGProps & { title?: string; className?: string; direction?: "top" | "right" | "bottom" | "left"; }; export declare const ArrowIcon: FC; export {};