import { Colors } from '../../styles'; import * as React from 'react'; interface Props { loading: boolean; fullscreen?: boolean; label?: React.ReactNode; color: Colors; onClose?: () => void; } declare const Loading: { (props: Props): JSX.Element; defaultProps: { color: string; }; }; export default Loading;