import type { SmartAccountSigner } from "@alchemy/aa-core"; import type { Chain, Client, Hex, Transport } from "viem"; import type { MultiOwnerLightAccount } from "../accounts/multiOwner"; import { type UpdateMultiOwnerLightAccountOwnersParams } from "../actions/updateOwners.js"; export type MultiOwnerLightAccountClientActions | undefined = MultiOwnerLightAccount | undefined> = { updateOwners: (args: UpdateMultiOwnerLightAccountOwnersParams) => Promise; }; export declare const multiOwnerLightAccountClientActions: | undefined = MultiOwnerLightAccount | undefined>(client: Client) => MultiOwnerLightAccountClientActions;