import React from 'react';
import './ButtonGroup_gap_s.css';
export interface ButtonGroupGapSProps {
    /**
     * Вертикальное позиционирование кнопока
     */
    gap?: 's';
}
/**
 * Модификатор, делающий из ссылки псевдоссылку.
 * @param {ButtonGroupProps} props
 */
export declare const withGapS: {
    <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: React.ComponentType<ButtonGroupGapSProps & K>): (props: ButtonGroupGapSProps & 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;
};
