UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

25 lines (24 loc) 516 B
import { TypographyProps } from "@mui/material/Typography"; /** * Number text props */ export interface NumberTextProps extends TypographyProps { /** * Locale */ locale?: string | string[]; /** * Options */ options?: Intl.NumberFormatOptions; /** * Value */ value?: number | bigint | null; } /** * Number text * @param props Props * @returns Component */ export declare function NumberText(props: NumberTextProps): import("react/jsx-runtime").JSX.Element;