import React from 'react'; import { ColorVariants } from '../../utils/types'; export declare type TextProps = { as?: 'p' | 'span' | 'div'; children: string; className?: string; color?: ColorVariants; decoration?: 'underline' | 'line-through'; highlight?: string[]; highlightBgColor?: ColorVariants; highlightColor?: string; size?: 'xs' | 'sm' | 'base' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl'; }; declare const Text: React.FC; export { Text };