/** type of Scientific Notation Number */
export interface IScientificNotationNumber {
    /**
     * The coefficient of the number
     */
    coefficient: number;
    /**
     * The exponent of the number
     */
    exponent: number;
}
/** The props type of [[`IExponentFormatterProps`]]. */
export interface IExponentFormatterProps {
    /**
     * The number to be converted to scientific notation.
     */
    number: number;
    /**
     * The number of digits after decimal point
     */
    precision: number;
}
export declare const ExponentFormatter: (props: IExponentFormatterProps) => import("react/jsx-runtime").JSX.Element;
