/// import { IMouseEventProps } from '@platform/react'; import { CssValue } from '@platform/css'; export * from './components/TextInput/types'; export declare type ITextStyle = { color?: number | string; fontSize?: number; fontWeight?: 'LIGHT' | 'NORMAL' | 'BOLD'; fontFamily?: string; align?: 'LEFT' | 'CENTER' | 'RIGHT'; italic?: boolean; letterSpacing?: number | string; lineHeight?: number | string; opacity?: number; textShadow?: string | Array; uppercase?: boolean; }; export declare type ITextProps = ITextStyle & IMouseEventProps & { className?: string; children?: React.ReactNode; block?: boolean; tooltip?: string; cursor?: string; isSelectable?: boolean; style?: CssValue; };