import { SmrtCollection } from '@happyvertical/smrt-core'; import { Group } from '../models/Group.js'; /** * Collection for managing Group objects */ export declare class GroupCollection extends SmrtCollection { static readonly _itemClass: typeof Group; /** * Find all groups in a tenant */ findByTenant(tenantId: string): Promise; /** * Find group by slug within a tenant */ findBySlug(slug: string, tenantId: string): Promise; } //# sourceMappingURL=GroupCollection.d.ts.map