declare class FuelTypeBase {
    fuelCode?: string | null;
    description?: string | null;
    otherTestInd?: string | null;
    displayOrder?: number | null;
    deletionMarker?: string | null;
}

export { FuelTypeBase };
