import React from "react"; import "./rating.scss"; export declare type RatingProps = JSX.IntrinsicElements["input"] & { /** Array of two colors to fill the states of the svgs */ colors?: [string, string]; /** Div wrapper props */ wrapperProps?: JSX.IntrinsicElements["div"]; /** svg to use instead of the default */ customSVG?: JSX.IntrinsicElements["svg"]; /** name to be used for accessibility */ svgname?: string; /** Dimensions (width/height) of the component */ dimension?: number; }; export declare const Rating: React.FC;