import type { FC } from 'react'; import { NativeProps } from '../../utils'; export type LoadingProps = { color?: string; size?: string | number; type?: 'spin' | 'circle' | 'dot'; textColor?: string; textSize?: string | number; vertical?: boolean; children?: string; } & NativeProps<'--color' | '--size' | '--text-color' | '--text-size'>; declare const Loading: FC; export default Loading;