import React from "react";
type IconProps = React.SVGProps<SVGSVGElement> & {
    color?: string;
    size?: number;
};
declare const ChevronsRightIcon: React.FC<IconProps>;
export default ChevronsRightIcon;
