/// import { Icon, Overwrite } from '@epam/uui-core'; import * as uuiComponents from '@epam/uui-components'; interface RatingMods { /** * Rating icon can be changed according to your needs. * Icon can be a React element (usually an SVG element). */ icon?: Icon; /** * Defines component size. * @default '18' */ size?: 18 | 24 | 30; } export interface RatingModsOverride { } /** Represents the 'Core properties' for the Rating component. */ export type RatingCoreProps = Omit; /** Represents the properties for the Rating component. */ export interface RatingProps extends RatingCoreProps, Overwrite { } export declare const Rating: import("react").ComponentType>; export {}; //# sourceMappingURL=Rating.d.ts.map