import type { FC, HTMLAttributes, Ref } from 'react';
import { type TestableProps } from '../../../utils/testId';
export interface PieChartSkeletonProps extends HTMLAttributes, TestableProps {
ref?: Ref;
/** Number of skeleton rows in the legend column. Defaults to `5`. */
rows?: number;
}
export declare const PieChartSkeleton: FC;