import * as _chakra_ui_system_dist_system_types from '@chakra-ui/system/dist/system.types'; import { BoxProps } from '@chakra-ui/react'; type SkeletonProps = BoxProps & { isLoaded?: boolean; }; /** * Skeleton renders a loading animation for a given box. It works great as a placeholder to avoid layout shifts. */ declare const Skeleton: _chakra_ui_system_dist_system_types.ComponentWithAs<"div", SkeletonProps>; export { Skeleton, SkeletonProps };