import type { Lix } from "../lix/open-lix.js"; import type { LixAccount } from "./schema-definition.js"; /** * Switch the current account to the provided account. * * @example * * One active account * * ```ts * await switchAccount({ lix, to: [otherAccount] }); * ``` * * @example * * Multiple active accounts * * ```ts * await switchAccount({ lix, to: [account1, account2] }); * ``` */ export declare function switchAccount(args: { lix: Pick; to: Pick[]; }): Promise; //# sourceMappingURL=switch-account.d.ts.map