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