import React from 'react'; interface ParseLogisticsProps { selfCalibration?: boolean; onChange: (value: any) => void; } declare const ParseLogistics: (props: ParseLogisticsProps) => React.JSX.Element; export default ParseLogistics;