import * as React from 'react';
import { BoxProps } from '../box';
import { Direction } from './icon-utils';
interface ArrowIconProps extends BoxProps {
    direction?: Direction;
}
export declare const ArrowIcon: React.FC<ArrowIconProps>;
export {};
