/// <reference types="react" />
interface IProps extends React.SVGProps<SVGSVGElement> {
    placement?: "left" | "top" | "right" | "bottom";
}
declare const ArrowIcon: (props: IProps) => import("react/jsx-runtime").JSX.Element;
export default ArrowIcon;
