import { ComponentProps } from 'react';
type SkeletonProps = ComponentProps<"div"> & {
    /**
     * Full circle skeleton
     * */
    round?: boolean;
};
/**
 * Skeleton to indicate content loading state.
 * Useful if you load data partially and want to preserve layout size.
 * */
export declare const Skeleton: ({ className, round, ...props }: SkeletonProps) => import("react").JSX.Element;
export {};
