import type { HttpTransport, SmartAccountSigner } from "@aa-sdk/core"; import { type AlchemySmartAccountClient, type AlchemySmartAccountClientConfig } from "@account-kit/infra"; import { type CreateLightAccountParams, type LightAccount, type LightAccountClientActions } from "@account-kit/smart-contracts"; import { type Chain } from "viem"; export type AlchemyLightAccountClientConfig = Omit, "transport"> & Omit>, "account">; export declare function createLightAccountAlchemyClient(params: AlchemyLightAccountClientConfig): Promise, LightAccountClientActions>>;