import type { HttpTransport, SmartAccountSigner } from "@aa-sdk/core"; import { type AlchemySmartAccountClient, type AlchemySmartAccountClientConfig } from "@account-kit/infra"; import { type CreateMultiOwnerLightAccountParams, type MultiOwnerLightAccount, type MultiOwnerLightAccountClientActions } from "@account-kit/smart-contracts"; import { type Chain } from "viem"; export type AlchemyMultiOwnerLightAccountClientConfig = Omit, "transport" | "type"> & Omit>, "account">; export declare function createMultiOwnerLightAccountAlchemyClient(params: AlchemyMultiOwnerLightAccountClientConfig): Promise, MultiOwnerLightAccountClientActions>>;