import React, { FC } from 'react'; import { TextColorType } from '../../util/global-props'; import './span.component.scss'; export declare type SpanPropsType = { className?: string; children: React.ReactNode; color?: TextColorType; weight?: 'bold' | 'normal'; uppercase?: boolean; flex?: number; role?: string; underline?: boolean; tabularNumbers?: boolean; }; export declare const Span: FC;