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