import { ReactElement } from 'react'; export type ScoreSize = 'small' | 'medium' | 'big' | 'large'; export type ScoreTheme = 'dark' | 'light' | 'darker' | 'gold'; export interface ScoreProps { children?: number; score?: number; size?: ScoreSize; theme?: ScoreTheme; } export declare function Score({ children, score, size, theme, }: ScoreProps): ReactElement;