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