import React from 'react';
interface RatingProps {
    value?: number;
    max?: number;
    onChange?: (rating: number) => void;
    size?: number;
    color?: string;
    activeColor?: string;
    readonly?: boolean;
    allowHalf?: boolean;
    className?: string;
    emoji?: string;
    tooltip?: boolean;
    theme?: 'default' | 'cosmic' | 'neon' | 'futuristic' | 'minimal';
    animation?: boolean;
    glowIntensity?: 'low' | 'medium' | 'high';
}
declare const Rating: React.FC<RatingProps>;
export default Rating;
