import React from 'react';
declare type ArrowProps = React.SVGProps<SVGSVGElement> & {
    arrowDirection: 'left' | 'right';
};
declare const Arrow: ({ arrowDirection, ...props }: ArrowProps) => JSX.Element;
export default Arrow;
