import { AuthenticationCreds } from 'baileys'; import { Store } from 'cache-manager'; declare const makeCacheManagerAuthState: (store: Store, sessionKey: string) => Promise<{ clearState: () => Promise; saveCreds: () => Promise; state: { creds: AuthenticationCreds; keys: { get: (type: string, ids: string[]) => Promise<{}>; set: (data: any) => Promise; }; }; }>; export default makeCacheManagerAuthState;