import { StringEnumLike, StringEnumMember } from "../../enum/EnumModel";
import { BaseEnumPath } from "./BaseEnumPath";
export declare class QEnumPath<EnumType extends StringEnumLike> extends BaseEnumPath<StringEnumMember<EnumType>> {
    protected theEnum: EnumType;
    constructor(path: string, theEnum: EnumType);
    protected mapValue(value: StringEnumMember<EnumType>): string;
}
