import * as React from "react"; import { INodeHeadingImmutable, INodeHeadingOptions, NodeHeadingLevel, NodeType } from "@ef-carbon/dom"; import IBaseProps from "../IProps"; export interface IProps extends INodeHeadingOptions, IBaseProps { } export interface IState { } declare class Heading extends React.PureComponent implements INodeHeadingImmutable { render(): React.ReactNode; readonly type: NodeType.Heading; readonly text: string; readonly level: NodeHeadingLevel; private readonly handlePress; private readonly handleLongPress; } export interface IStatic extends React.ComponentClass { } declare const component: IStatic; export { component as Component }; export default Heading;