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