UNPKG

mui-forms

Version:

Material UI forms with json based schema

9 lines (8 loc) 277 B
/// <reference types="react" /> import { IFieldProps } from "../../common/field"; interface IProps extends IFieldProps { section: string; showValidation: () => JSX.Element; } declare function FileControl(props: IProps): JSX.Element; export default FileControl;