@jsonforms/material-renderers
Version:
Material Renderer Set for JSON Forms
11 lines (10 loc) • 440 B
TypeScript
import React from 'react';
import { CellProps, WithClassname } from '@jsonforms/core';
import { InputProps } from '@mui/material';
import { WithInputProps } from '../util';
interface MuiTextInputProps {
muiInputProps?: InputProps['inputProps'];
inputComponent?: InputProps['inputComponent'];
}
export declare const MuiInputText: React.NamedExoticComponent<CellProps & WithClassname & MuiTextInputProps & WithInputProps>;
export {};