import * as React from 'react'; export interface ProfileCardSkeletonProps extends React.HTMLAttributes { /** Whether to show the stats grid row (3 columns) */ showStats?: boolean; /** Whether to show the action buttons row */ showActions?: boolean; } /** * Loading placeholder for `ProfileCard`. * * @description * Mirrors the visual layout of `ProfileCard`: centered avatar, name + role * text lines, optional stats grid, and optional action buttons. * * @example * ```tsx * {isLoading ? : } * ``` */ export declare function ProfileCardSkeleton({ showStats, showActions, className, ...props }: ProfileCardSkeletonProps): import("react/jsx-runtime").JSX.Element;