export interface ScatterplotSkeletonProps { /** Number of dots to render. */ count?: number; } /** * Loading state for the Scatterplot widget. Mirrors a scatter chart's * silhouette — a deterministic spread of small circular dots in the plot * area plus a legend stub — so the skeleton reads as "a scatter chart" * rather than a generic list. Matches bar/histogram/pie skeleton structure * (grid stub + legend stub in a flex column). */ export declare function ScatterplotSkeleton({ count }: ScatterplotSkeletonProps): import("react/jsx-runtime").JSX.Element;