import React from 'react'; import { ViewStyle } from 'react-native'; interface CustomFlipCardProps { children: [React.ReactNode, React.ReactNode]; flip: boolean; style?: ViewStyle; duration?: number; friction?: number; perspective?: number; flipHorizontal?: boolean; flipVertical?: boolean; useSpring?: boolean; } export declare const CustomFlipCard: React.FC; export {};