import React from 'react'; import { ShapeFills } from '../../themes/types'; export type LoadingIndicatorProps = { color?: ShapeFills; size?: number; testID?: string; }; declare const LoadingIndicator: ({ color, size, testID, }: LoadingIndicatorProps) => React.JSX.Element; export default LoadingIndicator;