import React from 'react'; import { Animated } from 'react-native'; import type { SharedProps } from '@coinbase/cds-common/types/SharedProps'; import { type IconProps } from '../icons/Icon'; export type AnimatedCaretBaseProps = SharedProps & { rotate: number; }; export type AnimatedCaretProps = AnimatedCaretBaseProps & Partial>; export declare const useAnimatedCaretAnimation: (rotate: number) => { animatedStyles: { transform: { rotate: Animated.AnimatedInterpolation; }[]; }; }; export declare const AnimatedCaret: React.NamedExoticComponent; //# sourceMappingURL=AnimatedCaret.d.ts.map