import { View } from 'react-native'; import type { RollingNumberProps } from './types'; /** * Displays a number and animates every digit that changes, rolling it to its new * position. Useful for counters, live totals and metric readouts where the change * itself carries meaning. */ export declare const RollingNumber: import("../../core/factory").PlatformBlocksComponent<{ props: RollingNumberProps; ref: View; }>;