export { UnitFormatter } from './UnitFormatter.container';
export { SimpleUnitFormatter } from './SimpleUnitFormatter.container';
export declare const unitFormatterUtils: {
    decimalToFraction: (decimal: number) => string;
    decimalToMixedNumber: (decimal: number) => string;
    fractionToDecimal: (fraction: string) => number;
    isBaseTwoFraction: (value: string) => boolean;
    isNumber: (value: string) => boolean;
    isFraction: (changedValue: string) => boolean;
    isMixedNumberWithBaseTwoFraction: (value: string) => boolean;
    stringToUnitValue: (unitValue: string) => false | import("./types").UnitFormatterValue;
};
export type { SimpleUnitFormatterProps, SimpleUnitFormatterRef, UnitType, Unit, UnitFormatterValue, UnitFormatterProps, } from './types';
