import { NumericEnumLike, NumericEnumMember } from "../../enum/EnumModel"; import { NumericEnumConverter } from "../../enum/NumericEnumConverter"; import { BaseEnumPath } from "./BaseEnumPath"; export declare class QNumericEnumPath extends BaseEnumPath> { protected theEnum: EnumType; readonly converter: NumericEnumConverter; constructor(path: string, theEnum: EnumType); /** * We require the string value of the enum for any OData operation */ protected mapValue(value: NumericEnumMember): string; }