/// <reference types="react" />
import './Button_width_max.css';
export interface IButtonWidthMaxProps {
    /**
     * Ширина кнопки
     */
    width?: 'max';
}
/**
 * Модификатор, отвечающий за максимальную ширину кнопки.
 * @param {IButtonWidthMaxProps} props
 */
export declare const withWidthMax: {
    <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: import("react").ComponentType<IButtonWidthMaxProps & K>): (props: IButtonWidthMaxProps & K) => import("react").ReactElement<any, string | ((props: any) => import("react").ReactElement<any, any> | null) | (new (props: any) => import("react").Component<any, any, any>)>;
    __isSimple: boolean;
    __blockName: string;
    __mod: string;
    __value: string | number | boolean | undefined;
    __passToProps: boolean;
};
