import React from 'react'; import type { InputProps, SelectProps } from 'antd'; import type { ProSchema } from 'ls-pro-utils'; import type { ProFormFieldItemProps } from '../../interface'; export declare type ProFormFieldProps> = ProSchema & { mode?: 'edit' | 'read' | 'update'; isDefaultDom?: boolean; ref?: any; plain?: boolean; text?: any; }, any, any>; declare const _default: (props: ProFormFieldProps) => React.ReactElement; export default _default;