/// <reference types="react" />
import './MessageBox_size_m.css';
export declare type MessageBoxSizeMProps = {
    /**
     * размер компонента
     */
    size?: 'm';
};
/**
 * Модификатор, отвечающий за размер компонента.
 * @param {MessageBoxSizeMProps} props
 */
export declare const withSizeM: {
    <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: import("react").ComponentType<MessageBoxSizeMProps & K>): (props: MessageBoxSizeMProps & 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;
};
