import * as React from "react"; import { ViewProps } from "../View"; /** * The loading `Spinner` is an animated element that hints something is in process for pending actions. */ declare class Spinner extends React.Component { static defaultProps: { color: string; }; render(): JSX.Element; } export default Spinner;