import React from 'react'; export interface MyTextProps { name?: string; visible?: boolean; textType?: string; style?: React.CSSProperties; content: string; textReg?: any; version?: string; showHtml?: boolean; compType?: string; onSelectedRowsRelease?: (e: any) => void; onSelectedRowKeysRelease?: (e: any[]) => void; onSelectedKeysRelease?: (e: any[]) => void; onEditingKeyRelease?: (e: any) => void; onInlineEditRelease?: (e: any) => void; onInlineSaveRelease?: (e: any) => void; onSelectedDataRelease?: (e: any[]) => void; pageState?: any; pagePublicState?: any; onDoubleClick?: React.MouseEventHandler; onClick?: React.MouseEventHandler; } declare const Text: React.ForwardRefExoticComponent>; export default Text;