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