import React from 'react';
export type Props = {
    size?: 'lg' | 'md' | 'sm';
    className?: string;
};
declare const Loading: ({ className, size }: Props) => React.JSX.Element;
export { Loading };
