import { Collection, Filter, ObjectId as MongoObjectId } from "mongodb"; import type { CreateWebsiteUrlInput, WebsiteUrl, WebsiteUrlDoc } from "./websiteUrls.types"; export declare const getWebsiteUrlsCollection: () => Collection; export declare const getWebsiteUrlsByClient: (clientId: string) => Promise; export declare const getWebsiteUrlById: (id: string) => Promise; export declare const findWebsiteUrls: (filter?: Filter) => Promise; export declare const createWebsiteUrl: (input: CreateWebsiteUrlInput) => Promise; export declare const updateWebsiteUrl: (id: string, updates: Partial>) => Promise; export declare const deleteWebsiteUrl: (id: string) => Promise; //# sourceMappingURL=websiteUrls.getters.d.ts.map