@iimm/formily-mui
Version:
form field components based on @mui/material and @formily/react
10 lines (9 loc) • 411 B
TypeScript
/// <reference types="react" />
import { type FormItemBaseProps } from './FormItemBase';
export interface FormItemProps extends FormItemBaseProps {
/** 不从FormLayout获取信息 */
noFormLayout?: boolean;
/** 手动指定不从外层Field获取信息 */
noField?: boolean;
}
export declare const FormItem: import("react").MemoExoticComponent<import("@formily/react").ReactFC<FormItemProps>>;