import React from 'react'; import { CellProps, WithClassname } from '@json-forms/core'; import { InputProps } from '@material-ui/core/Input'; interface MuiTextInputProps { muiInputProps?: InputProps['inputProps']; inputComponent?: InputProps['inputComponent']; } export declare const MuiInputText: React.MemoExoticComponent<(props: CellProps & WithClassname & MuiTextInputProps) => JSX.Element>; export {};