import React from 'react'; interface IdentifyAddressProps { value: { address: any[]; detail: string; receiverName: string; receiverMobile: string; }; onChange: (value: any) => void; disabled?: boolean; showIdentify?: boolean; type?: 'workOrder' | 'bs' | 'wdt' | 'gy' | 'km' | 'jst'; } declare const IdentifyAddress: (props: IdentifyAddressProps) => React.JSX.Element; export default IdentifyAddress;