import { NumericEnumLike } from "../../enum/EnumModel";
import { QNumericEnumCollection } from "../../primitve-collection/PrimitveCollections";
import { QCollectionPath } from "../QCollectionPath";
export declare class QNumericEnumCollectionPath<EnumType extends NumericEnumLike> extends QCollectionPath<QNumericEnumCollection<EnumType>> {
    protected theEnum: EnumType;
    constructor(path: string, theEnum: EnumType);
    getEntity(withPrefix?: boolean): QNumericEnumCollection<EnumType>;
}
