import { Plan, PlanDoc, PlanFilter, PlanQueryOptions } from "../index"; import { Filter, ObjectId } from "mongodb"; export declare const getPlansCollection: () => import("mongodb").Collection; /** * Generic function to find plans with flexible filtering */ export declare const findPlans: (filter?: PlanFilter, options?: PlanQueryOptions) => Promise; export declare const findPlansByQuery: (query: Filter, options?: PlanQueryOptions) => Promise; export declare const countPlans: (query: Filter) => Promise; export declare const createPlanDoc: (planData: Omit) => Promise; export declare const updatePlanDoc: (planId: ObjectId, updates: Partial>) => Promise; //# sourceMappingURL=plans.getters.d.ts.map