import { BoxProps } from '@chakra-ui/react';
type LightSpinnerProps = BoxProps;
/** A circular spinner
*
* Can be used in place of a loading animation, or for reloading app state, for instance.
*
* ```tsx
*
* ```
*
* You can also pass an explanatory text as `children`:
*
* ```tsx
*
* Hold your horses
*
*/
declare const LightSpinner: ({ children, width, maxWidth, ...props }: LightSpinnerProps) => JSX.Element;
export { LightSpinner, LightSpinnerProps };