import { FC } from 'react';
import { INumberFormatter } from './types';
/**
 * A NumberFormatter component which will format its child
 * according to the configuration options passed as props or
 * available through a NumberFormatterContext.
 */
export declare const NumberFormatter: FC<INumberFormatter>;
