import React from 'react'; declare type AnimationConfig = { easing?: (value: number) => number; duration?: number; delay?: number; scale?: number; }; declare type StarRatingProps = { rating: number; onChange?: (rating: number) => void | undefined; minRating?: number; maxStars?: number; starColor?: string; starSize?: number; enableSwiping?: boolean; animationConfig?: AnimationConfig; testID?: string; }; export declare const StarRating: React.FC; export {};