import { type EntryPointDef, type SmartAccountSigner } from "@aa-sdk/core"; import { type Address, type Chain, type Hex, type Transport } from "viem"; import type { LightAccountEntryPointVersion, LightAccountVersion } from "../types.js"; import { type CreateLightAccountBaseParams, type LightAccountBase } from "./base.js"; export type MultiOwnerLightAccount = LightAccountVersion<"MultiOwnerLightAccount">> = LightAccountBase & { encodeUpdateOwners: (ownersToAdd: Address[], ownersToRemove: Address[]) => Hex; getOwnerAddresses: () => Promise; }; export type CreateMultiOwnerLightAccountParams = LightAccountVersion<"MultiOwnerLightAccount">> = Omit, "getAccountInitCode" | "entryPoint" | "version" | "abi" | "accountAddress" | "type"> & { salt?: bigint; initCode?: Hex; accountAddress?: Address; factoryAddress?: Address; version?: TLightAccountVersion; entryPoint?: EntryPointDef, Chain>; owners?: Address[]; }; export declare function createMultiOwnerLightAccount = LightAccountVersion<"MultiOwnerLightAccount">>(config: CreateMultiOwnerLightAccountParams): Promise>;