import { BoxProps } from '@chakra-ui/react'; type ContentLoaderProps = BoxProps; /** * ContentLoader is a component that renders a loading animation. * It should mostly be used for */ declare const ContentLoader: ({ children, ...props }: ContentLoaderProps) => JSX.Element; export { ContentLoader, ContentLoaderProps };