import type * as React from 'react'; import { IconCommonProps } from './SvgIcon'; export type ArrowIconDirectionType = 'up' | 'down' | 'left' | 'right'; export interface ArrowIconProps extends IconCommonProps { direction?: ArrowIconDirectionType; } export declare function ArrowIcon(props: ArrowIconProps): React.ReactElement;