import { AllHTMLAttributes } from 'react';
export interface LoadingProps extends Omit, 'color'> {
color?: 'primary' | 'light' | 'secondary' | 'secondary-light' | 'tertiary';
}
declare const Loading: ({ color, ...props }: LoadingProps) => import("react").JSX.Element;
export default Loading;