import React from 'react';
import { Animated, ViewProps } from 'react-native';
interface IanimatedView extends Animated.AnimatedProps<ViewProps> {
    size?: number;
    color?: string;
}
declare const LoadingSvg: ({ size, color, ...props }: IanimatedView) => React.JSX.Element;
export default LoadingSvg;
