import { ReactNode } from 'react'; import { BoxProps } from '@mui/material'; type ScoreContainerProps = { children: ReactNode; boxProps?: BoxProps; }; export declare const ScoreContainer: (props: ScoreContainerProps) => import("react/jsx-runtime").JSX.Element; export {};