import { FormInstance, FormItemProps } from 'antd'; import { NamePath } from 'antd/es/form/interface'; import type { StoreValue, Store } from '@rc-component/form/es/interface'; import type { TransformType } from '../propsType'; export declare const transformValue: (names: NamePath[], form: FormInstance, fieldName: NamePath, normalize?: (value: StoreValue, prevValue: StoreValue, allValues: Store) => StoreValue, getValueProps?: FormItemProps['getValueProps']) => TransformType; export default transformValue;