import * as React from "react"; import { EntityProps } from "../types"; /** * Parent Entity component. * Most components share many properties so we "lift state up" to the parent. */ export declare class Entity extends React.Component { constructor(props: EntityProps); renderText(): JSX.Element; renderBurrs(): any; componentWillReceiveProps(nextProps: any): void; render(): JSX.Element; }