import * as React from 'react'; interface IEUIProps { /** Value to format. */ value: string | number; } declare class EUI extends React.Component { render(): string; } export { EUI };