import React from 'react'; interface LogisticsInterceptionValueType { interceptCompany: string; interceptCode: string; interceptType: string; interceptSenderMobile: string; interceptAddress: any[]; interceptDetail: string; interceptReceiverName: string; interceptReceiverMobile: string; interceptLogisticsStatus: string | number; interceptLogisticsStatusOther: string; interceptLogisticsSnapshot: string; qySelfInterceptLogisticsStatus: string; interceptLogisticsApiStatus: { status: string; reason: string; }; interceptLogisticsApiStatusReason: string; interceptLogisticsUserKCode: string; interceptLogisticsUserSecretKey: string; interceptLogisticsCustomerCode: string; } interface LogisticsInterceptionProps { value: Partial; expressInterceptData: any[]; required: boolean; disabled: boolean; isEditing: boolean; onChange: (value: Partial, type?: string) => void; onBlur: (value: string, type: string) => void; platform: string; showReason?: boolean; onJumpPage?: (val: any) => void; preCreateAndNotModified?: boolean; interceptTypeDefaults?: Record; } declare const LogisticsInterception: (props: Partial) => React.JSX.Element; export default LogisticsInterception;