import Table from '../helpers/Table';
export declare enum FuelType {
    GASOLINA = 1,
    DIESEL = 2,
    ETANOL = 3,
    GNV = 4,
    FLEX = 5,
    OTRO = 9
}
declare const _default: Table<{
    0: ["_id", FuelType];
    1: ["description", string];
}, {
    0: FuelType;
    1: string;
}, FuelType, Required<{
    description?: string | undefined;
    _id?: FuelType | undefined;
}>>;
export default _default;
