import React from 'react';
import './Link_theme_strong.css';
export interface ILinkThemeStrongProps {
    /**
     * Стилевое оформление ссылки
     */
    theme?: 'strong';
}
/**
 * Модификатор, отвечающий за стилевое оформление ссылки.
 * @param {ILinkThemeStrongProps} props
 *
 * @deprecated Рекомендуется использовать withViewDefault
 */
export declare const withThemeStrong: {
    <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: React.ComponentType<ILinkThemeStrongProps & K>): (props: ILinkThemeStrongProps & 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;
};
