import * as React from 'react'; import { NodeOptions, ReportSize, Size } from './types'; import { ValueCache } from './valuecache'; declare module 'react' { interface HTMLAttributes { xmlns?: string; } } declare type NodeProps = { node: NodeOptions; reportSize: ReportSize; valueCache: ValueCache; html: boolean; layoutStage?: number; children: { shape: (innerSize: Size) => React.ReactElement; label: () => React.ReactElement; }; }; declare const Node: React.FC; export default Node;