import React from 'react'; export type Props = { className?: string; theme?: 'marryBaby' | 'default'; hideText?: boolean; }; declare const Loading: ({ className, theme, hideText }: Props) => React.JSX.Element; export { Loading };