/// import { Icon } from '../_utils/icon'; export declare type ArrowIconProps = Icon & Readonly<{ right?: boolean; }>; export declare const ArrowIcon: { ({ right, ...props }: ArrowIconProps): JSX.Element; defaultProps: { right: boolean; className: string; iconClassName: string; iconColor: string; size: number; title: string; badgeAriaLabel: string; badgeContent: string; isDisabled: boolean; }; };