import type { ReactElement } from 'react'; import type { ViewProps } from 'react-native'; interface SpinnerProps extends ViewProps { /** * Size of Spinner. */ size?: 'small' | 'medium'; /** * Spinner's variant. */ intent?: 'primary' | 'inverted'; /** * Testing id of the component. */ testID?: string; } declare const Spinner: ({ testID, size, intent, ...nativeProps }: SpinnerProps) => ReactElement; export default Spinner;