import type { AuthenticationState } from '../Types/index.js'; /** * Stores the full authentication state in a single SQLite database file. * Efficient for production use and prevents filesystem bottlenecking. */ export declare const useSQLiteAuthState: (databasePath: string) => Promise<{ state: AuthenticationState; saveCreds: () => Promise; }>; //# sourceMappingURL=use-fast-sql-auth-state.d.ts.map