import React from 'react'; import { type IconProps, type IconBaseFillColor } from './core'; interface IconStarsProps extends IconProps { base?: '12' | '16' | '24'; baseFillColor?: IconBaseFillColor; } export declare function IconStars({ base, baseFillColor, ...props }: IconStarsProps): React.JSX.Element; export {};