import type { SmartAccountSigner } from "@alchemy/aa-core"; import type { Chain, Client, Hex, Transport } from "viem"; import type { LightAccount } from "../accounts/account"; import { type TransferLightAccountOwnershipParams } from "../actions/transferOwnership.js"; export type LightAccountClientActions | undefined = LightAccount | undefined> = { transferOwnership: (args: TransferLightAccountOwnershipParams) => Promise; }; export declare const lightAccountClientActions: | undefined = LightAccount | undefined>(client: Client) => LightAccountClientActions;