import React, { FC } from 'react';
import { ViewStyle } from 'react-native';
interface Props {
isLoading: boolean;
color?: string;
size?: number;
duration?: number;
children?: React.ReactNode | null;
style?: ViewStyle;
}
declare const Loading: FC<Props>;
export default Loading;