import React from 'react';
import type { FreightInfo } from '../../type';
interface LogisticsInfoSectionProps {
    isAudit: boolean;
    hideFields: string[];
    freightInfo: Partial<FreightInfo>;
    changeContent: Partial<FreightInfo>;
    beforeContent: Partial<FreightInfo>;
}
declare const LogisticsInfoSection: React.FC<LogisticsInfoSectionProps>;
export default LogisticsInfoSection;
