///
import './Button_width_max.css';
export interface IButtonWidthMaxProps {
/**
* Ширина кнопки
*/
width?: 'max';
}
/**
* Модификатор, отвечающий за максимальную ширину кнопки.
* @param {IButtonWidthMaxProps} props
*/
export declare const withWidthMax: {
(WrappedComponent: import("react").ComponentType): (props: IButtonWidthMaxProps & 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;
};