import { Component } from 'react'; import type { ImageURISource, StyleProp, TextStyle, ViewStyle } from 'react-native'; import type { MoreTextProps } from './MoreText'; import type { ReviewIndicatorProps } from './ReviewIndicator'; import type { ReviewItemProps } from './ReviewItem'; export interface ReviewsListProps { reviews: Array; reviewStyle?: Record>; reviewItemProps?: Partial; recommendedImage?: ImageURISource; verifiedImage?: ImageURISource; reviewIndicatorProps?: Partial; moreTextProps?: MoreTextProps; onHelpful?: (props: ReviewItemProps) => void; onNotHelpful?: (props: ReviewItemProps) => void; } export declare class ReviewsList extends Component { render(): JSX.Element; }