import React from 'react'; import './Textinput_view_material.css'; export interface TextinputViewMaterial { /** * Текст метки, который отображается как плавающая метка или заполнитель. */ label?: string; /** * Внешний вид текстового поля. */ view?: 'material'; /** * Вариант внешнего вида компонента */ variant?: 'filled' | 'outlined'; } export declare const withViewMaterial: { (WrappedComponent: React.ComponentType): (props: TextinputViewMaterial & K) => React.ReactElement React.ReactElement | null) | (new (props: any) => React.Component)>; __isSimple: boolean; __blockName: string; __mod: string; __value: string | number | boolean | undefined; __passToProps: boolean; };