import { type PublicClient } from "viem"; import type { AppConfig } from "../config/env.js"; export declare const DEFAULT_ETH_RPC_URL = "https://ethereum.publicnode.com"; export declare const ENS_CCIP_GATEWAY = "https://ccip.ens.xyz"; export declare class EnsClientFactory { private readonly config; private client; constructor(config: AppConfig); getClient(): PublicClient; }