import * as React from 'react';
interface Props {
    data: any[];
}
declare class Formatted extends React.PureComponent<Props, any> {
    render(): JSX.Element;
}
export default Formatted;
