import * as React from 'react';
export interface LoadingProps {
    style?: React.CSSProperties;
}
export default function Loading(props: LoadingProps): JSX.Element;
