/// <reference types="styled-components" />
import React from 'react';
export interface Props {
    color?: string;
    width?: string;
    height?: string;
    title: string;
    theme?: any;
}
export declare const ArrowRightIcon: React.ForwardRefExoticComponent<Pick<Props, "title" | "color" | "width" | "height"> & {
    theme?: any;
}>;
export default ArrowRightIcon;
