type ScoreValueBaseProps = { unit: string; preserveUnitLineBreaks?: boolean; }; type FilledScoreValueProps = ScoreValueBaseProps & { value: number | string; emptyLabel?: never; }; type EmptyScoreValueProps = ScoreValueBaseProps & { value: null; emptyLabel: string; }; export type ScoreValueProps = FilledScoreValueProps | EmptyScoreValueProps; export declare const ScoreValue: (props: ScoreValueProps) => import("react/jsx-runtime").JSX.Element; export {};