import { Collection, ObjectId } from "mongodb"; import type { RetryAnalyzeDoc, RetryAnalyzeWithId } from "./retryAnalyze.types"; export declare const getRetryAnalyzeCollection: () => Collection; export declare const getAllRetryAnalyzeDocs: () => Promise; export declare const insertRetryAnalyzeDoc: (doc: Omit) => Promise; export declare const upsertRetryAnalyzeDoc: (doc: Pick) => Promise; export declare const deleteRetryAnalyzeDocById: (id: ObjectId) => Promise; export declare const deleteRetryAnalyzeDocByCallSid: (callSid: string) => Promise; export declare const updateRetryAnalyzeErrorLog: (id: ObjectId, errorLog: string) => Promise; //# sourceMappingURL=retryAnalyze.getters.d.ts.map