/// import React from 'react'; import { ReactNode } from "react"; type TextProps = { tag: 'p' | 'span' | 'div'; weight?: 'regular' | 'medium' | 'bold'; noMargins?: boolean; className?: string; children?: ReactNode; }; declare const Text: React.FC; export { TextProps, Text };