import React from 'react'; import type { Animated } from 'react-native'; import type { ActionGroupProps } from '../FAB/ActionGroup'; import type { FABProps } from '../FAB/FAB'; interface AnimatedFABProps { fabProps: FABProps | ActionGroupProps; contentOffsetY: Animated.Value; contentHeight: Animated.Value; layoutHeight: Animated.Value; } declare const AnimatedFAB: ({ fabProps, contentOffsetY, contentHeight, layoutHeight, }: AnimatedFABProps) => React.JSX.Element; export default AnimatedFAB;