import { NumericEnumLike, NumericEnumMember, StringEnumLike, StringEnumMember } from "../enum/EnumModel"; import { QEnumPath } from "../path/enum/QEnumPath"; import { QNumericEnumPath } from "../path/enum/QNumericEnumPath"; import { QBinaryPath } from "../path/QBinaryPath"; import { QBooleanPath } from "../path/QBooleanPath"; import { QDateTimeOffsetV2Path } from "../path/v2/QDateTimeOffsetV2Path"; import { QDateTimeV2Path } from "../path/v2/QDateTimeV2Path"; import { QGuidV2Path } from "../path/v2/QGuidV2Path"; import { QNumberV2Path } from "../path/v2/QNumberV2Path"; import { QStringNumberV2Path } from "../path/v2/QStringNumberV2Path"; import { QStringV2Path } from "../path/v2/QStringV2Path"; import { QTimeV2Path } from "../path/v2/QTimeV2Path"; import { QBigNumberPath } from "../path/v4/QBigNumberPath"; import { QDatePath } from "../path/v4/QDatePath"; import { QDateTimeOffsetPath } from "../path/v4/QDateTimeOffsetPath"; import { QGuidPath } from "../path/v4/QGuidPath"; import { QNumberPath } from "../path/v4/QNumberPath"; import { QStringPath } from "../path/v4/QStringPath"; import { QTimeOfDayPath } from "../path/v4/QTimeOfDayPath"; import { QPrimitiveCollection } from "./QPrimitiveCollection"; export declare class QStringCollection extends QPrimitiveCollection> { readonly it: QStringPath; } export declare class QStringV2Collection extends QPrimitiveCollection> { readonly it: QStringV2Path; } export declare class QNumberCollection extends QPrimitiveCollection> { readonly it: QNumberPath; } export declare class QBigNumberCollection extends QPrimitiveCollection> { readonly it: QBigNumberPath; } export declare class QNumberV2Collection extends QPrimitiveCollection> { readonly it: QNumberV2Path; } export declare class QStringNumberV2Collection extends QPrimitiveCollection> { readonly it: QStringNumberV2Path; } export declare class QBooleanCollection extends QPrimitiveCollection> { readonly it: QBooleanPath; } export declare class QGuidCollection extends QPrimitiveCollection> { readonly it: QGuidPath; } export declare class QGuidV2Collection extends QPrimitiveCollection> { readonly it: QGuidV2Path; } export declare class QBinaryCollection extends QPrimitiveCollection { readonly it: QBinaryPath; } export declare class QDateTimeOffsetCollection extends QPrimitiveCollection> { readonly it: QDateTimeOffsetPath; } export declare class QTimeOfDayCollection extends QPrimitiveCollection> { readonly it: QTimeOfDayPath; } export declare class QDateCollection extends QPrimitiveCollection> { readonly it: QDatePath; } export declare class QTimeV2Collection extends QPrimitiveCollection> { readonly it: QTimeV2Path; } export declare class QDateTimeV2Collection extends QPrimitiveCollection> { readonly it: QDateTimeV2Path; } export declare class QDateTimeOffsetV2Collection extends QPrimitiveCollection> { readonly it: QDateTimeOffsetV2Path; } export declare class QEnumCollection extends QPrimitiveCollection, QEnumPath> { readonly it: QEnumPath; constructor(theEnum: EnumType, prefix?: string); } export declare class QNumericEnumCollection extends QPrimitiveCollection, QNumericEnumPath> { readonly it: QNumericEnumPath; constructor(theEnum: EnumType, prefix?: string); }