import type { AuthenticationState } from '../Types/index.js'; export type MongoCollectionLike = { findOne(query: any): Promise; updateOne(query: any, update: any, options?: any): Promise; deleteOne(query: any): Promise }; export declare const useMongoFileAuthState: (collection: MongoCollectionLike) => Promise<{ state: AuthenticationState; saveCreds: () => Promise }>;