UNPKG

@yandex/ui

Version:

Yandex UI components

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