import { Group } from "../index"; import { Collection, Filter } from "mongodb"; export declare const getGroupsCollection: () => Collection; export declare const findGroups: (filter: Filter) => Promise; export declare const createGroup: (group: Group) => Promise; export declare const updateGroup: (filter: Filter, data: Partial) => Promise | null>; export declare const removeGroup: (groupId: string) => Promise; //# sourceMappingURL=groups.getters.d.ts.map