1import { AuthenticationState } from '../Types'; 2/** 3 * stores the full authentication state in a single folder. 4 * Far more efficient than singlefileauthstate 5 * 6 * Again, I wouldn't endorse this for any production level use other than perhaps a bot. 7 * Would recommend writing an auth state for use with a proper SQL or No-SQL DB 8 * */ 9export declare const useMultiFileAuthState: (folder: string) => Promise<{ 10 state: AuthenticationState; 11 saveCreds: () => Promise<void>; 12}>; 13 14