import * as React from 'react'; export interface LoadingProps { type?: string; color?: string; gapColor?: string; radius?: string; style?: React.CSSProperties; } declare const Loading: (props: LoadingProps) => JSX.Element; export default Loading;