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