export type BrandScoreItem = Readonly<{ label: string; value: number; tooltip: string; }>; export type BrandScoreBlockProps = Readonly<{ title?: React.ReactNode; items: ReadonlyArray; max?: number; totalLabel: string; pointsLabel: string; className?: string; }>; export declare const BrandScoreBlock: ({ title, items, max, totalLabel, pointsLabel, className, ...rest }: BrandScoreBlockProps) => import("react").JSX.Element; //# sourceMappingURL=BrandScoreBlock.d.ts.map