import React from "react"; import { StyleProp, TextStyle } from "react-native"; type NumberCountProps = { start?: number; end: number; duration?: number; style?: StyleProp; className?: string; prefix?: string; suffix?: string; formatPrice?: boolean; abbreviate?: boolean; locale?: "en-BD" | "en-US" | "bn-BD" | "fr-FR"; showRating?: boolean; maxRating?: number; }; declare const _default: React.MemoExoticComponent<({ start, end, duration, style, className, prefix, suffix, formatPrice, abbreviate, locale, showRating, maxRating, }: NumberCountProps) => React.JSX.Element>; export default _default;