/// type Size = 'xxs' | 'xs' | 'sm' | 'base' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl' | '5xl' | '6xl' | '7xl' | '8xl' | '9xl'; export interface TextProps { children?: React.ReactNode; className?: string; size?: Size; weight?: 'normal' | 'medium' | 'semibold' | 'bold'; as?: 'span' | 'p' | 'div' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; } declare function Text({ children, className, as: Wrapper, weight, size }: TextProps): JSX.Element; export default Text;