import { HTMLAttributes, ReactElement, ReactNode } from 'react'; import { default as defaultTheme } from '../../utils/theme'; export type LoadingProps = { size?: number; isLoading: boolean; color?: typeof defaultTheme.color; } & HTMLAttributes; export declare const Loading: ({ color, size, isLoading, children, ...props }: LoadingProps) => ReactElement | ReactNode; export default Loading;