import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface SpinWrapperProps { children: React.ReactNode; style?: StyleProp; testID?: string; } declare const SpinWrapper: ({ children, style, testID }: SpinWrapperProps) => React.JSX.Element; export default SpinWrapper;