import { Animated } from 'react-native'; export type PressRotateOptions = { animationName?: 'none' | 'rotate'; iterations?: number; duration?: number; disabled?: boolean; }; export declare function useIconPressRotate(value: Animated.Value, options: PressRotateOptions): { rotateStyle: { transform: { rotate: Animated.AnimatedInterpolation; }[]; } | undefined; runPressAnimation: () => Promise; }; //# sourceMappingURL=animation.d.ts.map