import * as React from "react"; import { INodeQuoteImmutable, INodeQuoteOptions, NodeTextSize, NodeType } from "@ef-carbon/dom"; import IBaseProps from "../IProps"; export interface IProps extends INodeQuoteOptions, IBaseProps { } export interface IState { } declare class Quote extends React.PureComponent implements INodeQuoteImmutable { render(): React.ReactNode; readonly type: NodeType.Quote; 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 Quote;