import { DocumentReference } from 'firebase/firestore'; export type GroupCategoryConstructorPayload = { id: string; abbrv: string; category: string; default: boolean; type: string; ref: DocumentReference; }; export declare class GroupCategory { private _id; private _abbrv; private _category; private _default; private _type; private _ref; constructor(payload: GroupCategoryConstructorPayload); get id(): string; get abbrv(): string; get category(): string; get isDefault(): boolean; get type(): string; get ref(): DocumentReference; toObject(): object; } //# sourceMappingURL=GroupCategory.d.ts.map