rsuite
Version:
A suite of react components
8 lines (7 loc) • 329 B
TypeScript
import { BoxProps } from '../internals/Box';
export interface StatValueProps extends BoxProps {
value?: number;
formatOptions?: Intl.NumberFormatOptions;
}
declare const StatValue: import("../internals/types").InternalRefForwardingComponent<"dd", StatValueProps, never> & Record<string, never>;
export default StatValue;