import { ImageStyle } from 'react-native'; import { AnimatedStyleProp } from 'react-native-reanimated'; declare type ErrorComponentProps = { transXYStyle?: AnimatedStyleProp; size: 'small' | 'big'; }; declare const ErrorComponent: ({ transXYStyle, size }: ErrorComponentProps) => JSX.Element; export default ErrorComponent;