import { type RollingNumberDigitComponent } from './RollingNumber'; /** * Default digit component for RollingNumber on web. * * The web implementation differs from mobile due to platform-specific animation libraries: * - Web uses framer-motion with imperative `animate` calls * - Mobile uses react-native-reanimated with shared values and worklets * * For the "every" variant, web renders only the necessary digits above/below the current * value using CSS positioning. Mobile renders all 10 digits (0-9) stacked with absolute * positioning. * * For the "single" variant, web uses imperative opacity crossfades on DOM sections. * Mobile uses reanimated's `entering`/`exiting` props with custom animation worklets. */ export declare const DefaultRollingNumberDigit: RollingNumberDigitComponent; //# sourceMappingURL=DefaultRollingNumberDigit.d.ts.map