import { default as React } from 'react'; import { Box } from '../box'; export type RootProps = React.ComponentPropsWithoutRef & { loading?: boolean; }; /** * Skeleton is used to indicate that the content is loading. * The skeleton can be used directly or as a wrapper, in which case it will get the same width and height as the child. */ export declare const Root: React.ForwardRefExoticComponent>;