import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
type Props = {
    defaultRating?: number;
    iconColor?: string;
    justRating?: boolean;
    readOnly?: boolean;
    reviews?: string[];
    size?: number;
    style?: StyleProp<ViewStyle>;
    textColor?: string;
    textSize?: number;
    onChange?: (value: number) => void;
};
export declare const StarRating: ({ defaultRating, iconColor, justRating, onChange, readOnly, reviews, size, style, textColor, textSize, }: Props) => React.JSX.Element;
export {};
