import type { TextStyle } from 'react-native'; import { type AnimatedStyle } from 'react-native-reanimated'; import type { ThemeVars } from '@coinbase/cds-common/core/theme'; import type { RollingNumberTransitionConfig } from './RollingNumber'; export type AnimatedTextStyle = AnimatedStyle; export declare function useColorPulse({ value, formatted, defaultColor, colorPulseOnUpdate, positivePulseColor, negativePulseColor, transitionConfig, }: { value: number; formatted: string; defaultColor: ThemeVars.Color; colorPulseOnUpdate: boolean; positivePulseColor: ThemeVars.Color; negativePulseColor: ThemeVars.Color; transitionConfig?: RollingNumberTransitionConfig; }): AnimatedTextStyle; //# sourceMappingURL=useColorPulse.d.ts.map