import './Text_weight_bold.css'; import React from 'react'; export interface ITextWeightBoldProps { /** * Насыщенность текста */ weight?: 'bold'; } /** * Модификатор, отвечающий за насыщенность текста. * @param {ITextWeightBoldProps} props */ export declare const withWeightBold: { (WrappedComponent: React.ComponentType): (props: ITextWeightBoldProps & K) => React.ReactElement React.ReactElement | null) | (new (props: any) => React.Component)>; __isSimple: boolean; __blockName: string; __mod: string; __value: string | number | boolean | undefined; __passToProps: boolean; };