import * as react from 'react'; import { TextProps as TextProps$1, TextStyle, Text as Text$1 } from 'react-native'; import { OmniColorTokens } from '@plyxui/core'; type ThemeColorKey = keyof OmniColorTokens; type TextSize = "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl"; type TextWeight = "regular" | "medium" | "semibold" | "bold"; type TextAlign = "start" | "center" | "end"; interface TextProps extends Omit { size?: TextSize; weight?: TextWeight; color?: ThemeColorKey | (string & {}); align?: TextAlign; truncate?: boolean; style?: TextStyle; } declare const Text: react.ForwardRefExoticComponent>; export { Text, type TextAlign, type TextProps, type TextSize, type TextWeight };