import * as React from "react"; import { INodeSpanImmutable, INodeSpanOptions, NodeChildren, NodeSpanAlignment, NodeType } from "@ef-carbon/dom"; import { IExtension, INode } from "../INode"; import IBaseProps from "../IProps"; export interface IProps extends INodeSpanOptions, IBaseProps { } export interface IState { } declare class Span extends React.PureComponent implements INodeSpanImmutable { private array; constructor(props: IProps); componentDidUpdate({ children: prev }: IProps): void; render(): React.ReactNode; readonly type: NodeType.Span; readonly children: NodeChildren; readonly alignment: NodeSpanAlignment; private readonly handlePress; private readonly handleLongPress; } export interface IStatic extends React.ComponentClass { } declare const component: IStatic; export { component as Component }; export default Span;