/// <reference types="react" />
import './Button_view_search-arrow.css';
export interface ButtonViewSearchArrowProps {
    /**
     * Стилевое оформление кнопки
     */
    view?: 'search-arrow';
}
/**
 * Модификатор, отвечающий за стилевое оформление кнопки в поиске внутри шапки.
 * @param {ButtonViewSearchArrowProps} props
 *
 */
export declare const withViewSearchArrow: {
    <K extends import("@bem-react/core").IClassNameProps = {}>(WrappedComponent: import("react").ComponentType<ButtonViewSearchArrowProps & K>): (props: ButtonViewSearchArrowProps & 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;
};
