import Table from '../helpers/Table';
export declare enum CargoCharacteristic {
    MERCADERIA_CON_CADENA_DE_FRIO = 1,
    CARGA_PELIGROSA = 2,
    OTRO = 3
}
declare const _default: Table<{
    0: ["_id", CargoCharacteristic];
    1: ["description", string];
}, {
    0: CargoCharacteristic;
    1: string;
}, CargoCharacteristic, Required<{
    description?: string | undefined;
    _id?: CargoCharacteristic | undefined;
}>>;
export default _default;
