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