import type { SmartAccountSigner } from "@aa-sdk/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; }; /** * Generates client actions for a multi-owner light account, including the ability to update owners. * * @example * ```ts * import { multiOwnerLightAccountClientActions, createMultiOwnerLightAccount } from "@account-kit/smart-contracts"; * import { createAlchemySmartAccountClient } from "@account-kit/infra"; * import { sepolia } from "@account-kit/infra"; * * const smartAccountClient = createAlchemySmartAccountClient({ * account: await createMultiOwnerLightAccount(...), * apiKey: "your-api-key", * chain: sepolia, * }).extend(multiOwnerLightAccountClientActions); * ``` * * @param {Client} client the client for interacting with the multi-owner light account * @returns {MultiOwnerLightAccountClientActions} an object containing the client actions specifically for a multi-owner light account */ export declare const multiOwnerLightAccountClientActions: | undefined = MultiOwnerLightAccount | undefined>(client: Client) => MultiOwnerLightAccountClientActions;