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