/// <reference types="hoist-non-react-statics" />
import * as React from 'react';
import BasicComponent from '../BasicComponent';
export interface IGeneralProps {
    unit: string[];
    precision: number;
    setUnit: (unit: string[]) => void;
    setPrecision: (precision: number) => void;
    getPopupContainer?: () => HTMLElement;
}
export declare class ValueElement extends BasicComponent<IGeneralProps, {}> {
    render(): React.JSX.Element;
}
declare const _default: React.ComponentClass<IGeneralProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<IGeneralProps, any> & typeof ValueElement) | (React.FunctionComponent<IGeneralProps> & typeof ValueElement), {}>;
export default _default;
