import { BoxProps } from '@chakra-ui/react'; type ColorInlineLoaderProps = Exclude; /** * Loading component that works well in bounded contexts, like inside a button. * * This component should only be used on light backgrounds with low saturation (e.g. white, light grey etc.). For colored backgrounds, please use the LightInlineLoader component. */ declare const ColorInlineLoader: ({ width, maxWidth, ...props }: ColorInlineLoaderProps) => JSX.Element; export { ColorInlineLoader, ColorInlineLoaderProps };