/** @description This model represents the amount of the dangerous goods */
export declare class DangerousAmountDetails {
    /** @description The amount of dangerous goods */
    amount?: number;
    /** @description The unit of dangerous goods */
    unit?: string;
}
