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