export interface PieSkeletonProps { count?: number; } /** * Loading state for the Pie widget. Mirrors the donut silhouette — a ring * (gray circle with a background-coloured hole punched out), a stacked * value/name stub in the centre, and a centered legend stub below — so the * skeleton reads as "a donut chart" rather than a solid disc. * * Single donut only: multi-series pie loads as a horizontal bar chart, so * rendering one ring stays honest regardless of `count`. */ export declare function PieSkeleton({ count }: PieSkeletonProps): import("react/jsx-runtime").JSX.Element;