import type { Abi } from "./blockchain/get_abi.js"; interface FetchOptions extends RequestInit { } interface GetAbisParams { rpc_url: string | URL | Request; fetchOptions?: FetchOptions; } export interface AbiResponse { account_name: string; abi?: Abi[]; error?: { details?: Array<{ message?: string; }>; message?: string; }; message?: string; } export declare function get_abis(contracts: string[] | undefined, { rpc_url, fetchOptions }: GetAbisParams): Promise; export {};