import React from 'react'; import { AyFormField, AyFormProps, RegisterFieldProps } from './ay-form'; import { AySearchField } from '../AySearch/ay-search'; import { AnyKeyProps } from '../types/AnyKeyProps'; import 'moment/locale/zh-cn'; import { AySearchTableField } from '../AySearchTable/ay-search-table'; /** * 注册一个 field type * @param fieldType field 类型 * @param field 注册的 field */ export declare const registerField: (fieldType: string, field: RegisterFieldProps) => void; /** * 获得配置列表 * @param fields 配置列表 */ export declare const getDefaultValue: (fields: Array) => AnyKeyProps; export declare const getFieldDefaultValue: (key: string, fields: Array) => any; /** * antd form 原生支持的方法尽数暴露出去 */ export declare const funcs: string[]; declare const _default: React.ForwardRefExoticComponent & React.RefAttributes>; export default _default;