import React from 'react'; import { ExternalStyles, Theme } from '../../styles'; export interface SpinnerProps { size?: number; borderWidth?: number; style?: ExternalStyles; } export declare function Spinner(props: SpinnerProps): JSX.Element; export declare namespace Spinner { var defaultProps: Partial; } export declare const createStyles: (theme: Theme, { size, borderWidth }: SpinnerProps) => { spinner: React.CSSProperties; };