/// import { BoxProps } from '@hitagi/core/Box'; import { MeterColSizes } from './MeterColSizes'; export declare const WinRateMeterColSizes: MeterColSizes; type ComputedProps = { winRate: number; }; type ComputationalProps = { winCount: number; matchCount: number; }; type ValueProps = ComputedProps | ComputationalProps; type WinRateMeterColProps = ValueProps & { sizes?: MeterColSizes; } & BoxProps; export default function WinRateMeterCol(props: WinRateMeterColProps): JSX.Element; export {};