import React from 'react'; import './Link_theme_normal.css'; export interface ILinkThemeNormalProps { /** * Стилевое оформление ссылки */ theme?: 'normal'; } /** * Модификатор, отвечающий за стилевое оформление ссылки. * @param {ILinkThemeNormalProps} props * * @deprecated Рекомендуется использовать withViewDefault */ export declare const withThemeNormal: { (WrappedComponent: React.ComponentType): (props: ILinkThemeNormalProps & K) => React.ReactElement React.ReactElement | null) | (new (props: any) => React.Component)>; __isSimple: boolean; __blockName: string; __mod: string; __value: string | number | boolean | undefined; __passToProps: boolean; };