import './Text_align.css'; import { IClassNameProps } from '@bem-react/core'; import React from 'react'; export declare type TextAlignValue = 'start' | 'end' | 'center' | 'justify'; export interface TextAlignProps { align?: TextAlignValue; } /** * Модификатор, отвечающий за выравнивание текста. * @param {TextAlignProps} props */ export declare const withAlign: { (WrappedComponent: React.ComponentType): (props: TextAlignProps & K) => React.ReactElement React.ReactElement | null) | (new (props: any) => React.Component)>; __isSimple: boolean; __blockName: string; __mod: string; __value: string | number | boolean | undefined; __passToProps: boolean; };