import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; type Props = { color?: string; icon?: 'heart' | 'star'; rating?: number; size?: number; style?: StyleProp; total?: number; }; export declare const Rating: ({ color, icon, rating, size, style, total, }: Props) => React.JSX.Element; export {};