import type { FSDBRepository } from '@becomes/purple-cheetah-mod-fsdb/types'; import type { MongoDBCachedRepository } from '@becomes/purple-cheetah-mod-mongodb-mem-cache/types'; import type { BCMSApiKey } from './models'; export declare type BCMSApiKeyMongoDBRepository = MongoDBCachedRepository; export declare type BCMSApiKeyFSDBRepository = FSDBRepository; export declare type BCMSApiKeyRepository = BCMSApiKeyMongoDBRepository | BCMSApiKeyFSDBRepository;