import Table from '../helpers/Table';
export declare enum VehicleOperationType {
    VENTA_A_REPRESENTANTE = 1,
    VENTA_AL_CONSUMIDOR_FINAL = 2,
    VENTA_A_GOBIERNO = 3,
    VENTA_A_FLOTA_DE_VEHICULOS = 4
}
declare const _default: Table<{
    0: ["_id", VehicleOperationType];
    1: ["description", string];
}, {
    0: VehicleOperationType;
    1: string;
}, VehicleOperationType, Required<{
    description?: string | undefined;
    _id?: VehicleOperationType | undefined;
}>>;
export default _default;
