import React, { FC } from 'react'; import { ModalProps } from '../modal'; export interface AddressProps { firstName?: string; lastName?: string; address1?: string; address2?: string; city?: string; country?: string; province?: string; zip?: string | number; phone?: string | number; } export interface AddressModalProps extends Omit { /** 额外的 FormItem */ extraItem?: React.ReactNode; /** 值 */ value?: AddressProps; /** 更新事件 */ onChange?: (values: AddressProps) => void; onOk?: (values: AddressProps) => void; } declare const AddressModal: FC; export default AddressModal;