import React from 'react';
export interface StarProps {
    size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | number;
    color?: string;
    className?: string;
    style?: React.CSSProperties;
}
export declare const Star: React.FC<StarProps>;
//# sourceMappingURL=Star.web.d.ts.map