import { BoxProps } from '@chakra-ui/react'; type SkeletonTextProps = BoxProps; /** * SkeletonText renders a loading animation for a given text. It works great as a placeholder to avoid layout shifts. */ declare const SkeletonText: (props: SkeletonTextProps) => JSX.Element; export { SkeletonText, SkeletonTextProps };