import * as React from 'react'; export declare class Console extends React.Component { private readonly scrollToBottom; constructor(props: any); push: (command: any) => void; clear: () => void; error: (...rest: any[]) => void; assert: (test: any, ...rest: any[]) => void; dir: (...rest: any[]) => void; warn: (...rest: any[]) => void; debug: (...args: any[]) => void; info: (...args: any[]) => void; log: (...rest: any[]) => void; componentDidUpdate(): void; render(): JSX.Element; }