import { Color } from './constants.js';
export interface ArrowRightProps {
    color?: Color;
    size?: number;
}
export declare const ArrowRight: ({ color, size }: ArrowRightProps) => import("react/jsx-runtime").JSX.Element;
