import { Collection as MangoCollection } from 'dce-mango'; import { Log } from 'dce-commonkit'; import CrossServerCredential from '../types/CrossServerCredential'; import SelectAdmin from '../types/SelectAdmin'; import LogReviewerAdmin from '../types/LogReviewerAdmin'; /** * Get the log collection after initialization * @author Gardenia Liu */ export declare const internalGetLogCollection: () => Promise>; /** * Get the cross server credential collection after initialization * @author Gardenia Liu */ export declare const internalGetCrossServerCredentialCollection: () => Promise>; /** * Get the select admin collection after initialization * @author Gardenia Liu */ export declare const internalGetSelectAdminCollection: () => Promise>; /** * Get the log reviewer admin collection after initialization * @author Yuen Ler Chow */ export declare const internalGetLogReviewerAdminCollection: () => Promise>; /** * Get the log collection. Resolves after the collection has been initialized * @author Yuen Ler Chow * @returns a promise that resolves with the log collection */ export declare const getLogCollection: () => Promise>; /** * Initialize all collections required for expresskit * @author Gardenia Liu * @author Gabe Abrams * @param Collection the Collection class from dce-mango */ declare const initExpressKitCollections: (Collection: typeof MangoCollection) => void; export default initExpressKitCollections;