import React, { FC } from 'react'; import { SizeType, TextColorType } from '../../util/global-props'; import './description.component.scss'; export declare type DescriptionPropsType = { className?: string; children: React.ReactNode; size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'xxxl' | 'lx'; lineHeight?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; align?: 'left' | 'center' | 'right'; color?: TextColorType; weight?: 'bold' | 'normal' | 'medium' | 'regular' | 'semi-bold'; margin?: SizeType; uppercase?: boolean; flex?: number | string; noWrap?: boolean; style?: React.CSSProperties; onClick?: React.EventHandler>; }; export declare const Description: FC;