/**
 * @file reanimatedHelpers.ts
 * @description Utility functions to handle react-native-reanimated configuration and provide fallbacks
 */
interface ReanimatedAPI {
    useSharedValue: any;
    useAnimatedStyle: any;
    withTiming: any;
    withSpring: any;
    withRepeat: any;
    withSequence: any;
    runOnJS: any;
    Easing: any;
    Animated: any;
    isAvailable: boolean;
}
/**
 * Safely loads react-native-reanimated and provides fallbacks if not available
 */
export declare function getReanimatedAPI(): ReanimatedAPI;
/**
 * Check if react-native-reanimated is properly configured
 */
export declare function checkReanimatedSetup(): boolean;
/**
 * Display a helpful error message if reanimated is not configured
 */
export declare function showReanimatedSetupError(): void;
export {};
//# sourceMappingURL=reanimated.helper.d.ts.map