import * as React from 'react'; import { EdgeOptions, ReportSize } from './types'; declare module 'react' { interface HTMLAttributes { xmlns?: string; } } declare type EdgeLabelProps = { html: boolean; edgeMeta: EdgeOptions; reportSize: ReportSize; children: () => React.ReactElement; }; declare const EdgeLabel: React.FC; export default EdgeLabel;