import * as React from 'react'; import { IBoundingBox, IScene, IShapesDeclarations } from '../declarations'; import { IEditorGridState } from '../editor-state/editor-state'; export interface IStaticRendererPropTypes { scene: IScene; shapesDeclarations: IShapesDeclarations; grid: IEditorGridState; viewport: IBoundingBox; } export default class StaticRenderer extends React.Component { render(): JSX.Element; }