import type { Fetcher } from "./fetcher"; import type { GetChainsResponse } from "./types"; /** * Chain-related API operations */ export declare class ChainsAPI { private fetcher; constructor(fetcher: Fetcher); /** * Gets the list of supported chains. */ getChains(): Promise; }