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;
