export interface GraphSkeletonProps { /** Background (base / start) color of the pulsing silhouette. */ backgroundColor?: string; /** Foreground (peak) color of the pulse. */ foregroundColor?: string; /** Height of the graph silhouette. Defaults to the Figma value (140px). */ height?: number | string; /** Width of the graph silhouette. Defaults to 100% of the parent. */ width?: number | string; } /** * Loading skeleton for a line graph. Renders the line-graph silhouette from * the Figma "V3 Skelton Loaders" Graph variant with a pulse animation — * without any surrounding card chrome or title placeholder. */ export declare const GraphSkeleton: ({ backgroundColor, foregroundColor, height, width, }?: GraphSkeletonProps) => import("react/jsx-runtime").JSX.Element; export default GraphSkeleton;