import { Animated } from "react-native"; export declare type Elevation = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24; export declare const useElevation: (elevation: Elevation) => { backgroundColor: string; elevation: Elevation; boxShadow?: undefined; shadowColor?: undefined; shadowOffset?: undefined; shadowOpacity?: undefined; shadowRadius?: undefined; } | { backgroundColor: string; boxShadow: string; elevation?: undefined; shadowColor?: undefined; shadowOffset?: undefined; shadowOpacity?: undefined; shadowRadius?: undefined; } | { backgroundColor: string; shadowColor: string; shadowOffset: { width: number; height: number; }; shadowOpacity: number; shadowRadius: number; elevation?: undefined; boxShadow?: undefined; }; export declare const useAnimatedElevation: (elevation: Elevation) => { backgroundColor: string; elevation: Animated.Value; boxShadow?: undefined; transition?: undefined; shadowColor?: undefined; shadowOffset?: undefined; shadowOpacity?: undefined; shadowRadius?: undefined; } | { backgroundColor: Animated.AnimatedInterpolation; elevation: Animated.Value; boxShadow?: undefined; transition?: undefined; shadowColor?: undefined; shadowOffset?: undefined; shadowOpacity?: undefined; shadowRadius?: undefined; } | { backgroundColor: string; boxShadow: string; transition: string; elevation?: undefined; shadowColor?: undefined; shadowOffset?: undefined; shadowOpacity?: undefined; shadowRadius?: undefined; } | { backgroundColor: Animated.AnimatedInterpolation; boxShadow: string; transition: string; elevation?: undefined; shadowColor?: undefined; shadowOffset?: undefined; shadowOpacity?: undefined; shadowRadius?: undefined; } | { backgroundColor: string; shadowColor: string; shadowOffset: { width: number; height: Animated.AnimatedInterpolation; }; shadowOpacity: Animated.AnimatedInterpolation; shadowRadius: Animated.AnimatedInterpolation; elevation?: undefined; boxShadow?: undefined; transition?: undefined; } | { backgroundColor: Animated.AnimatedInterpolation; shadowColor: string; shadowOffset: { width: number; height: Animated.AnimatedInterpolation; }; shadowOpacity: Animated.AnimatedInterpolation; shadowRadius: Animated.AnimatedInterpolation; elevation?: undefined; boxShadow?: undefined; transition?: undefined; };