import type { semanticColors } from '../Theme/colors'; import type { TypographyItemName } from '../Theme/typography'; import type { HTMLAttributes } from 'react'; export interface TextContainerProps extends HTMLAttributes { $block?: boolean; $align?: 'center' | 'right' | 'left'; $color?: keyof typeof semanticColors.text; $typography?: keyof typeof TypographyItemName; $noWrap?: boolean; }