import { type AccountRepository } from './account-repository.js'; import { type CredentialStore } from '../credentials/credential-store.js'; export declare function load(email: string, claudeJsonPath: string, accountsDirPath: string, deps?: { repo?: AccountRepository; credentials?: CredentialStore; }): { keychainRestored: boolean; };