declare module 'react-native-spinkit' { import React from 'react'; import { StyleProp, ViewStyle } from "react-native"; export type SpinnerType = | 'CircleFlip' | 'Bounce' | 'Wave' | 'WanderingCubes' | 'Pulse' | 'ChasingDots' | 'ThreeBounce' | 'Circle' | '9CubeGrid' | 'WordPress' | 'FadingCircle' | 'FadingCircleAlt' | 'Arc' | 'ArcAlt' | 'Plane'; export type SpinnerProps = { isVisible?: boolean; color?: string; size?: number; type?: SpinnerType; style?: StyleProp; }; const Spinner: React.ComponentType; export default Spinner; }