import React from 'react';
interface HoverableValueProps {
    value: string;
    truncatedValue: string;
}
declare const HoverableValue: React.FC<HoverableValueProps>;
export default HoverableValue;
