import { ParamValueModel, ValueConverter } from "@odata2ts/converter-api"; import { NumericEnumLike, NumericEnumMember } from "./EnumModel"; export declare class NumericEnumConverter implements ValueConverter> { protected theEnum: EnumType; from: string; id: string; to: string; constructor(theEnum: EnumType); convertFrom(value: ParamValueModel): ParamValueModel>; convertTo(value: ParamValueModel>): ParamValueModel; }