import { type ComponentType } from '../../model/ComponentType'; import { type FontWeight, type TextAlign, type TextColor, type TextSize, type TitleSize } from './TextProps'; interface TextProps extends ComponentType { size?: TextSize | TitleSize; color?: TextColor; align?: TextAlign; font?: FontWeight; } export declare const Text: import("@redneckz/uni-jsx").UNIComponent; export {};