/** @description Types of regulation level defined for dangerous good */
export declare enum RegulationLevelTypes {
    /** @description lightly regulated */
    LightlyRegulated = "lightly_regulated",
    /** @description fully regualted */
    FullyRegulated = "fully_regulated",
    /** @description limited quantities regulated */
    LimitedQuantities = "limited_quantities",
    /** @description excepted quantity regulated */
    ExceptedQuantity = "excepted_quantity"
}
