import React from 'react'; import { PropsTypes } from '@orca-fe/deye-typings'; export interface TextProps extends React.HTMLAttributes { justifyContent?: string; alignItems?: string; maxLength?: number; children?: string; } declare const Text: { (props: TextProps): JSX.Element; title: string; icon: JSX.Element; propsDef: PropsTypes[]; style: boolean; defaultBoundSize: { width: number; height: number; }; }; export default Text;