/// <reference types="react" />
import './Button_pin_circle-brick.css';
export interface IButtonPinCircleBrickProps {
    /**
     * Форма кнопки
     */
    pin?: 'circle-brick';
}
/**
 * Модификатор, отвечающий за форму кнопки.
 * Используется для группировки кнопок поля с другими компонентами.
 * @param {IButtonPinCircleBrickProps} props
 */
export declare const withPinCircleBrick: {
    <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: import("react").ComponentType<IButtonPinCircleBrickProps & K>): (props: IButtonPinCircleBrickProps & 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;
};
