import React from 'react';
import './ButtonGroup_gap_m.css';
export interface ButtonGroupGapMProps {
    /**
     * Вертикальное позиционирование кнопока
     */
    gap?: 'm';
}
/**
 * Модификатор, делающий из ссылки псевдоссылку.
 * @param {ButtonGroupProps} props
 */
export declare const withGapM: {
    <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: React.ComponentType<ButtonGroupGapMProps & K>): (props: ButtonGroupGapMProps & K) => React.ReactElement<any, string | ((props: any) => React.ReactElement<any, any> | null) | (new (props: any) => React.Component<any, any, any>)>;
    __isSimple: boolean;
    __blockName: string;
    __mod: string;
    __value: string | number | boolean | undefined;
    __passToProps: boolean;
};
