export interface CreditScoreGraphProps { arcRadius: number; size?: 'L' | 'M' | 'SM'; healthScore: number; maxValue?: number; minValue?: number; footerCenterContent?: string | number; } export declare const CreditScoreGraph: (({ arcRadius, size, healthScore, maxValue, minValue, footerCenterContent, }: CreditScoreGraphProps) => import("react/jsx-runtime").JSX.Element) & { displayName: string; };