import { Collection, ObjectId } from "mongodb"; import { Session } from "../index"; import type { Result } from "./results.types"; export declare const getResultsCollection: () => Collection; export declare const createRunId: () => string; export declare const initializeResultDocument: (clientId: string, session?: Session) => Promise; export declare const findResultById: (resultId: string | ObjectId) => Promise; export declare const findResultByCallSid: (callSid: string) => Promise; //# sourceMappingURL=results.getter.d.ts.map