import { CSSProperties, ReactNode } from 'react'; import { BColors } from '../lib/consts/common'; declare type BTextColor = BColors; declare type BTextSize = 'sm' | 'm' | 'l' | 'x'; declare type BTextDisplay = 'block' | 'inline' | 'inline-block' | 'flex'; declare type TextTag = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'p' | 'span' | 'li'; declare type TextAlight = 'left' | 'right' | 'center'; declare type TextWeight = 'light' | 'regular' | 'medium' | 'semi-bold' | 'bold' | 'extra-bold' | 'black'; export interface BTextProps { className?: string; color?: BTextColor; children: ReactNode; display?: BTextDisplay; tag?: TextTag; size?: BTextSize; weight?: TextWeight; align?: TextAlight; style?: CSSProperties; } export declare const BText: import("react").NamedExoticComponent; export {};